Package ru.clinicainfo.protocol
Enum OAuthRequest.SHOW_SHILD_ON_REG
- java.lang.Object
-
- java.lang.Enum<OAuthRequest.SHOW_SHILD_ON_REG>
-
- ru.clinicainfo.protocol.OAuthRequest.SHOW_SHILD_ON_REG
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OAuthRequest.SHOW_SHILD_ON_REG>
- Enclosing class:
- OAuthRequest
public static enum OAuthRequest.SHOW_SHILD_ON_REG extends java.lang.Enum<OAuthRequest.SHOW_SHILD_ON_REG>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NECESSARYNO_SHOWNOT_NECESSARY
-
Field Summary
Fields Modifier and Type Field Description intvalue
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OAuthRequest.SHOW_SHILD_ON_REGvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OAuthRequest.SHOW_SHILD_ON_REG[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_SHOW
public static final OAuthRequest.SHOW_SHILD_ON_REG NO_SHOW
-
NOT_NECESSARY
public static final OAuthRequest.SHOW_SHILD_ON_REG NOT_NECESSARY
-
NECESSARY
public static final OAuthRequest.SHOW_SHILD_ON_REG NECESSARY
-
-
Method Detail
-
values
public static OAuthRequest.SHOW_SHILD_ON_REG[] 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 (OAuthRequest.SHOW_SHILD_ON_REG c : OAuthRequest.SHOW_SHILD_ON_REG.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OAuthRequest.SHOW_SHILD_ON_REG 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
-
-