Package anbxj
Enum Class AnBx_ChannelType
- All Implemented Interfaces:
Serializable
,Comparable<AnBx_ChannelType>
,Constable
An enumerator for AnBx channel types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAuthentication channel type in AnBx.Mutual authentication channel type in AnBx.Authentication with secret channel type in AnBx.Fresh authentication channel type in AnBx.Fresh authentication with secret channel type in AnBx.Plain channel type in AnBx.Secret channel type in AnBx. -
Method Summary
Modifier and TypeMethodDescriptionstatic AnBx_ChannelType
Returns the enum constant of this class with the specified name.static AnBx_ChannelType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PLAIN
Plain channel type in AnBx. -
AUTH
Authentication channel type in AnBx. -
FRESH_AUTH
Fresh authentication channel type in AnBx. -
AUTH_MUTUAL
Mutual authentication channel type in AnBx. -
SECRET
Secret channel type in AnBx. -
AUTH_SECRET
Authentication with secret channel type in AnBx. -
FRESH_AUTH_SECRET
Fresh authentication with secret channel type in AnBx.
-
-
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
-