public enum DomainType extends java.lang.Enum<DomainType>
Enum Constant and Description |
---|
DOMAIN_AUTOMATIC |
DOMAIN_MIN_MAX |
DOMAIN_SMALL |
DOMAIN_SPARSE |
Modifier and Type | Method and Description |
---|---|
static DomainType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DomainType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DomainType DOMAIN_AUTOMATIC
public static final DomainType DOMAIN_MIN_MAX
public static final DomainType DOMAIN_SMALL
public static final DomainType DOMAIN_SPARSE
public static DomainType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DomainType[] values()
for (DomainType c : DomainType.values()) System.out.println(c);