public enum Type extends Enum<Type>
| Enum Constant and Description |
|---|
ARC |
EXTENDED |
LOCATOR |
NONE |
RESOURCE |
SIMPLE |
TITLE |
| Modifier and Type | Method and Description |
|---|---|
static Type |
fromString(String str) |
String |
toString() |
static Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type SIMPLE
public static final Type EXTENDED
public static final Type LOCATOR
public static final Type ARC
public static final Type RESOURCE
public static final Type TITLE
public static final Type NONE
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2021 52North Initiative for Geospatial Open Source Software GmbH. All rights reserved.