public enum BoundStatements extends Enum<BoundStatements>
| Enum Constant and Description |
|---|
CREATE |
GET_BY_ID |
GET_BY_PRINCIPAL |
REVOKE_BY_ID |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
String |
getValue() |
static BoundStatements |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundStatements[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundStatements REVOKE_BY_ID
public static final BoundStatements GET_BY_ID
public static final BoundStatements GET_BY_PRINCIPAL
public static final BoundStatements CREATE
public static BoundStatements[] values()
for (BoundStatements c : BoundStatements.values()) System.out.println(c);
public static BoundStatements valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getName()
public String getValue()
Copyright © 2015–2016. All rights reserved.