Package sting.processor
Enum Class BindingValueKind
- All Implemented Interfaces:
Serializable,Comparable<BindingValueKind>,Constable
The supported v1 interceptor binding value kinds.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA boolean-valued annotation member.A byte-valued annotation member.A char-valued annotation member.A class-valued annotation member.A double-valued annotation member.An enum-valued annotation member.A float-valued annotation member.An int-valued annotation member.A long-valued annotation member.A short-valued annotation member.A string-valued annotation member.A value shape that v1 records but does not support for lifecycle binding. -
Method Summary
Modifier and TypeMethodDescriptionstatic BindingValueKindReturns the enum constant of this class with the specified name.static BindingValueKind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRING
A string-valued annotation member. -
BOOLEAN
A boolean-valued annotation member. -
BYTE
A byte-valued annotation member. -
SHORT
A short-valued annotation member. -
INT
An int-valued annotation member. -
LONG
A long-valued annotation member. -
FLOAT
A float-valued annotation member. -
DOUBLE
A double-valued annotation member. -
CHAR
A char-valued annotation member. -
ENUM
An enum-valued annotation member. -
CLASS
A class-valued annotation member. -
UNSUPPORTED
A value shape that v1 records but does not support for lifecycle binding.
-
-
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
-