public enum TripleState extends Enum<TripleState>
| Modifier and Type | Method and Description |
|---|---|
static TripleState |
forValue(String textValue) |
String |
getValue() |
static TripleState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TripleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TripleState REQUIRED
public static final TripleState OPTIONAL
public static final TripleState FORBIDDEN
public static TripleState[] values()
for (TripleState c : TripleState.values()) System.out.println(c);
public static TripleState 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 String getValue()
public static TripleState forValue(String textValue)
Copyright © 2018. All rights reserved.