Enum ExpandSelectTreeNodeImpl.AllKinds
- java.lang.Object
-
- java.lang.Enum<ExpandSelectTreeNodeImpl.AllKinds>
-
- org.apache.olingo.odata2.core.uri.ExpandSelectTreeNodeImpl.AllKinds
-
- All Implemented Interfaces:
Serializable,Comparable<ExpandSelectTreeNodeImpl.AllKinds>
- Enclosing class:
- ExpandSelectTreeNodeImpl
public static enum ExpandSelectTreeNodeImpl.AllKinds extends Enum<ExpandSelectTreeNodeImpl.AllKinds>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXPLICITLYTRUEFALSEIMPLICITLYTRUE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetBoolean()static ExpandSelectTreeNodeImpl.AllKindsvalueOf(String name)Returns the enum constant of this type with the specified name.static ExpandSelectTreeNodeImpl.AllKinds[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMPLICITLYTRUE
public static final ExpandSelectTreeNodeImpl.AllKinds IMPLICITLYTRUE
-
EXPLICITLYTRUE
public static final ExpandSelectTreeNodeImpl.AllKinds EXPLICITLYTRUE
-
FALSE
public static final ExpandSelectTreeNodeImpl.AllKinds FALSE
-
-
Method Detail
-
values
public static ExpandSelectTreeNodeImpl.AllKinds[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExpandSelectTreeNodeImpl.AllKinds c : ExpandSelectTreeNodeImpl.AllKinds.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpandSelectTreeNodeImpl.AllKinds valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getBoolean
public boolean getBoolean()
-
-