public enum OperationalContextEnum extends Enum<OperationalContextEnum>
| Enum Constant and Description |
|---|
DMO
Indicates that the component follows basic Dark Matter Object rules which
likewise conform to GWT JRE Emulation.
|
FULLJAVA
indicates that the component operates in a ful Java environment; no
restrictions.
|
| Modifier and Type | Method and Description |
|---|---|
static OperationalContextEnum |
get(int code)
Returns the enum value of the specified int or null if it's not valid.
|
static OperationalContextEnum |
get(String str)
Returns a value for this enum or throws an exception if the String value isn't
a valid member of this enum.
|
int |
intValue()
Returns the value of this enum value as an int.
|
static OperationalContextEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationalContextEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationalContextEnum DMO
public static final OperationalContextEnum FULLJAVA
public static OperationalContextEnum[] values()
for (OperationalContextEnum c : OperationalContextEnum.values()) System.out.println(c);
public static OperationalContextEnum 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 nullpublic int intValue()
public static OperationalContextEnum get(int code)
public static OperationalContextEnum get(String str)
Copyright © 2023. All rights reserved.