public static enum IdentifierBindingIndex.BindingType extends java.lang.Enum<IdentifierBindingIndex.BindingType>
Enum Constant and 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.
|
Modifier and Type | Method and 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.
|
public static final IdentifierBindingIndex.BindingType INSTANCE
public static final IdentifierBindingIndex.BindingType COLLECTION
public static final IdentifierBindingIndex.BindingType NONE
public static IdentifierBindingIndex.BindingType[] values()
for (IdentifierBindingIndex.BindingType c : IdentifierBindingIndex.BindingType.values()) System.out.println(c);
public static IdentifierBindingIndex.BindingType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null