public enum ArticlesOfAssociationType extends java.lang.Enum<ArticlesOfAssociationType>
| Enum Constant and Description |
|---|
ARTICLES_OF_ASSOCIATION |
MEMORANDUM_OF_ASSOCIATION |
| Modifier and Type | Method and Description |
|---|---|
static ArticlesOfAssociationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArticlesOfAssociationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="memorandum_of_association") public static final ArticlesOfAssociationType MEMORANDUM_OF_ASSOCIATION
@SerializedName(value="articles_of_association") public static final ArticlesOfAssociationType ARTICLES_OF_ASSOCIATION
public static ArticlesOfAssociationType[] values()
for (ArticlesOfAssociationType c : ArticlesOfAssociationType.values()) System.out.println(c);
public static ArticlesOfAssociationType 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 null