public enum DatabaseAccountOfferType extends Enum<DatabaseAccountOfferType>
Enum Constant and Description |
---|
STANDARD
Enum value Standard.
|
Modifier and Type | Method and Description |
---|---|
static DatabaseAccountOfferType |
fromString(String value)
Parses a serialized value to a DatabaseAccountOfferType instance.
|
String |
toString() |
static DatabaseAccountOfferType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseAccountOfferType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseAccountOfferType STANDARD
public static DatabaseAccountOfferType[] values()
for (DatabaseAccountOfferType c : DatabaseAccountOfferType.values()) System.out.println(c);
public static DatabaseAccountOfferType 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 static DatabaseAccountOfferType fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<DatabaseAccountOfferType>
Copyright © 2019. All rights reserved.