public enum MMAGroup extends Enum<MMAGroup>
Clase Java para MMAGroup.
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
<simpleType name="MMAGroup">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value=""/>
<enumeration value="1"/>
<enumeration value="2"/>
<enumeration value="3"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BETWEEN_10_AND_20_T |
BETWEEN_3_5_AND_10_T |
MORE_THAN_20_T |
WITHOUT_DATA |
| Modifier and Type | Method and Description |
|---|---|
static MMAGroup |
fromValue(String v) |
String |
value() |
static MMAGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MMAGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MMAGroup WITHOUT_DATA
public static final MMAGroup BETWEEN_3_5_AND_10_T
public static final MMAGroup BETWEEN_10_AND_20_T
public static final MMAGroup MORE_THAN_20_T
public static MMAGroup[] values()
for (MMAGroup c : MMAGroup.values()) System.out.println(c);
public static MMAGroup 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 String value()
Copyright © 2018. All rights reserved.