public enum Guitype extends Enum<Guitype>
| Enum Constant and Description |
|---|
CLOUD |
DATERANGE |
DYNAMIC |
FIXED |
GROUP |
LOCATION |
NUMERICRANGE |
OBJECT |
PROJECT |
TEXTFIELD |
| Modifier and Type | Method and Description |
|---|---|
static Guitype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Guitype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Guitype FIXED
public static final Guitype DYNAMIC
public static final Guitype CLOUD
public static final Guitype TEXTFIELD
public static final Guitype LOCATION
public static final Guitype PROJECT
public static final Guitype GROUP
public static final Guitype OBJECT
public static final Guitype DATERANGE
public static final Guitype NUMERICRANGE
public static Guitype[] values()
for (Guitype c : Guitype.values()) System.out.println(c);
public static Guitype 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 © 2025. All rights reserved.