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