public static enum Constants.WriteMode extends Enum<Constants.WriteMode>
Enum Constant and Description |
---|
CLOUD_STORAGE |
REST_API |
Modifier and Type | Method and Description |
---|---|
static Constants.WriteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.WriteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.WriteMode CLOUD_STORAGE
public static final Constants.WriteMode REST_API
public static Constants.WriteMode[] values()
for (Constants.WriteMode c : Constants.WriteMode.values()) System.out.println(c);
public static Constants.WriteMode 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 © 2022. All rights reserved.