public enum ServiceMethods extends java.lang.Enum<ServiceMethods>
| Enum Constant and Description |
|---|
getMetaModel |
selectModel |
verifyCredentials |
| Modifier and Type | Method and Description |
|---|---|
static ServiceMethods |
parse(java.lang.String input) |
static ServiceMethods |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceMethods[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceMethods verifyCredentials
public static final ServiceMethods getMetaModel
public static final ServiceMethods selectModel
public static ServiceMethods[] values()
for (ServiceMethods c : ServiceMethods.values()) System.out.println(c);
public static ServiceMethods 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 nullpublic static ServiceMethods parse(java.lang.String input)