Enum IdentifierBindingIndex.BindingType
- java.lang.Object
-
- java.lang.Enum<IdentifierBindingIndex.BindingType>
-
- software.amazon.smithy.model.knowledge.IdentifierBindingIndex.BindingType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IdentifierBindingIndex.BindingType>
- Enclosing class:
- IdentifierBindingIndex
public static enum IdentifierBindingIndex.BindingType extends java.lang.Enum<IdentifierBindingIndex.BindingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLLECTION
Indicates that the operation is bound to a resource as a collection operation.INSTANCE
Indicates that the operation is bound to a resource as an instance operation.NONE
Indicates that the operation is not bound to a resource.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IdentifierBindingIndex.BindingType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IdentifierBindingIndex.BindingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final IdentifierBindingIndex.BindingType INSTANCE
Indicates that the operation is bound to a resource as an instance operation.
-
COLLECTION
public static final IdentifierBindingIndex.BindingType COLLECTION
Indicates that the operation is bound to a resource as a collection operation.
-
NONE
public static final IdentifierBindingIndex.BindingType NONE
Indicates that the operation is not bound to a resource.
-
-
Method Detail
-
values
public static IdentifierBindingIndex.BindingType[] 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 (IdentifierBindingIndex.BindingType c : IdentifierBindingIndex.BindingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentifierBindingIndex.BindingType 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
-
-