Package org.apache.juneau
Enum Enablement
- All Implemented Interfaces:
Serializable
,Comparable<Enablement>
,java.lang.constant.Constable
Represents the enablement settings of a feature.
See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFeature is always enabled.Feature is enabled per HTTP request.Feature is disabled. -
Method Summary
Modifier and TypeMethodDescriptionstatic Enablement
fromString
(String s) Retrieves this enum using case-insensitive matching.boolean
isEnabled
(boolean def) Tests for enablement.boolean
isOneOf
(Enablement... values) Returnstrue if this enum is one of the specified values.static Enablement
Returns the enum constant of this type with the specified name.static Enablement[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALWAYS
Feature is always enabled. -
CONDITIONAL
Feature is enabled per HTTP request. -
NEVER
Feature is disabled.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
fromString
Retrieves this enum using case-insensitive matching.- Parameters:
s
- The enum name to resolve.- Returns:
- The resolved value, or
null if no match found.
-
isOneOf
Returnstrue if this enum is one of the specified values.- Parameters:
values
- The values to check against.- Returns:
true if this enum is one of the specified values.
-
isEnabled
Tests for enablement.- Parameters:
def
- The default value to use if this isCONDITIONAL
.- Returns:
true if this isALWAYS
orCONDITIONAL
anddef istrue .
-