Package io.jans.scim.model
Enum GluuBoolean
- java.lang.Object
-
- java.lang.Enum<GluuBoolean>
-
- io.jans.scim.model.GluuBoolean
-
- All Implemented Interfaces:
io.jans.orm.annotation.AttributeEnum
,Serializable
,Comparable<GluuBoolean>
@Deprecated public enum GluuBoolean extends Enum<GluuBoolean> implements io.jans.orm.annotation.AttributeEnum
Deprecated.Boolean value- Author:
- Yuriy Movchan Date: 11.20.2010
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static GluuBoolean
getByValue(String value)
Deprecated.String
getDisplayName()
Deprecated.String
getValue()
Deprecated.boolean
isBooleanValue()
Deprecated.Enum<? extends io.jans.orm.annotation.AttributeEnum>
resolveByValue(String value)
Deprecated.String
toString()
Deprecated.static GluuBoolean
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static GluuBoolean[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLED
public static final GluuBoolean DISABLED
Deprecated.
-
ENABLED
public static final GluuBoolean ENABLED
Deprecated.
-
FALSE
public static final GluuBoolean FALSE
Deprecated.
-
TRUE
public static final GluuBoolean TRUE
Deprecated.
-
INACTIVE
public static final GluuBoolean INACTIVE
Deprecated.
-
ACTIVE
public static final GluuBoolean ACTIVE
Deprecated.
-
-
Method Detail
-
values
public static GluuBoolean[] values()
Deprecated.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 (GluuBoolean c : GluuBoolean.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GluuBoolean valueOf(String name)
Deprecated.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
-
getValue
public String getValue()
Deprecated.- Specified by:
getValue
in interfaceio.jans.orm.annotation.AttributeEnum
-
isBooleanValue
public boolean isBooleanValue()
Deprecated.
-
getByValue
public static GluuBoolean getByValue(String value)
Deprecated.
-
getDisplayName
public String getDisplayName()
Deprecated.
-
resolveByValue
public Enum<? extends io.jans.orm.annotation.AttributeEnum> resolveByValue(String value)
Deprecated.- Specified by:
resolveByValue
in interfaceio.jans.orm.annotation.AttributeEnum
-
toString
public String toString()
Deprecated.- Overrides:
toString
in classEnum<GluuBoolean>
-
-