public enum ApiFunctions extends Enum<ApiFunctions>
Enum Constant and Description |
---|
CREATE |
DELETE |
READ |
READ_BY_KEY |
UPDATE |
Modifier and Type | Method and Description |
---|---|
static ApiFunctions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiFunctions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiFunctions READ
public static final ApiFunctions READ_BY_KEY
public static final ApiFunctions CREATE
public static final ApiFunctions UPDATE
public static final ApiFunctions DELETE
public static ApiFunctions[] values()
for (ApiFunctions c : ApiFunctions.values()) System.out.println(c);
public static ApiFunctions 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 nullCopyright © 2018 SAP SE. All rights reserved.