Package com.chrt.api.types
Enum CallerCredentialTypeEnum.Value
- java.lang.Object
-
- java.lang.Enum<CallerCredentialTypeEnum.Value>
-
- com.chrt.api.types.CallerCredentialTypeEnum.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CallerCredentialTypeEnum.Value>
- Enclosing class:
- CallerCredentialTypeEnum
public static enum CallerCredentialTypeEnum.Value extends java.lang.Enum<CallerCredentialTypeEnum.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description API_KEYM_2_M_JWTSESSION_JWTUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CallerCredentialTypeEnum.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CallerCredentialTypeEnum.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SESSION_JWT
public static final CallerCredentialTypeEnum.Value SESSION_JWT
-
M_2_M_JWT
public static final CallerCredentialTypeEnum.Value M_2_M_JWT
-
API_KEY
public static final CallerCredentialTypeEnum.Value API_KEY
-
UNKNOWN
public static final CallerCredentialTypeEnum.Value UNKNOWN
-
-
Method Detail
-
values
public static CallerCredentialTypeEnum.Value[] 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 (CallerCredentialTypeEnum.Value c : CallerCredentialTypeEnum.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CallerCredentialTypeEnum.Value 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
-
-