public enum CoercivityType extends Enum<CoercivityType>
| Enum Constant and Description |
|---|
High
High coercivity.
|
Low
Low coercivity.
|
| Modifier and Type | Method and Description |
|---|---|
static CoercivityType |
fromString(String text)
Returns the CoercivityType enumeration for the specified text or null if no enumeration matches the specified text.
|
static CoercivityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoercivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoercivityType High
public static final CoercivityType Low
public static CoercivityType[] values()
for (CoercivityType c : CoercivityType.values()) System.out.println(c);
public static CoercivityType 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 static CoercivityType fromString(String text)
text - Text representation of the specified CoercivityType enumeration member.
© 2016 ZIH Corp. All Rights Reserved.