public static enum Types.ApplianceType extends Enum<Types.ApplianceType>
Enum Constant and Description |
---|
IMAGE |
ISO |
MY_IMAGE |
Null |
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static Types.ApplianceType |
fromValue(String v) |
static Types.ApplianceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Types.ApplianceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.ApplianceType IMAGE
public static final Types.ApplianceType MY_IMAGE
public static final Types.ApplianceType ISO
public static final Types.ApplianceType Null
public static final Types.ApplianceType UNRECOGNIZED
public static Types.ApplianceType[] values()
for (Types.ApplianceType c : Types.ApplianceType.values()) System.out.println(c);
public static Types.ApplianceType 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 Types.ApplianceType fromValue(String v)
Copyright © 2009-2018 The Apache Software Foundation. All Rights Reserved.