Package anbxj
Enum Class AnBx_Layers
- All Implemented Interfaces:
Serializable
,Comparable<AnBx_Layers>
,Constable
AnBx Debug/Logging layers.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAnBx Debug/Logging layer that is always active.AnBx Debug/Logging layer for application-related operations.AnBx Debug/Logging layer for business logic-related operations.AnBx Debug/Logging layer for encryption-related operations.AnBx Debug/Logging layer for handling exceptions.AnBx Debug/Logging layer for language-related operations.AnBx Debug/Logging layer for network-related operations.AnBx Debug/Logging layer for protocol-related operations.AnBx Debug/Logging layer for session-related operations. -
Method Summary
Modifier and TypeMethodDescriptionstatic AnBx_Layers
Returns the enum constant of this class with the specified name.static AnBx_Layers[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NETWORK
AnBx Debug/Logging layer for network-related operations. -
ENCRYPTION
AnBx Debug/Logging layer for encryption-related operations. -
LANGUAGE
AnBx Debug/Logging layer for language-related operations. -
SESSION
AnBx Debug/Logging layer for session-related operations. -
PROTOCOL
AnBx Debug/Logging layer for protocol-related operations. -
BUSINESS_LOGIC
AnBx Debug/Logging layer for business logic-related operations. -
APPLICATION
AnBx Debug/Logging layer for application-related operations. -
ALWAYS
AnBx Debug/Logging layer that is always active. -
EXCEPTION
AnBx Debug/Logging layer for handling exceptions.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-