public enum AmiOwner extends Enum<AmiOwner>
Enum Constant and Description |
---|
ALL |
AMAZON |
AWS_MARKETPLACE |
SELF |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static AmiOwner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmiOwner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmiOwner AWS_MARKETPLACE
public static AmiOwner[] values()
for (AmiOwner c : AmiOwner.values()) System.out.println(c);
public static AmiOwner 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 © 2004–2014 The Kuali Foundation. All rights reserved.