Package com.mapr.baseutils.fsrpcutils
Enum CidInfo.CidInfoState
- java.lang.Object
-
- java.lang.Enum<CidInfo.CidInfoState>
-
- com.mapr.baseutils.fsrpcutils.CidInfo.CidInfoState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CidInfo.CidInfoState>
- Enclosing class:
- CidInfo
public static enum CidInfo.CidInfoState extends java.lang.Enum<CidInfo.CidInfoState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description StateFillingStateInvalidStateValid
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CidInfo.CidInfoStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CidInfo.CidInfoState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
StateInvalid
public static final CidInfo.CidInfoState StateInvalid
-
StateValid
public static final CidInfo.CidInfoState StateValid
-
StateFilling
public static final CidInfo.CidInfoState StateFilling
-
-
Method Detail
-
values
public static CidInfo.CidInfoState[] 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 (CidInfo.CidInfoState c : CidInfo.CidInfoState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CidInfo.CidInfoState valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-