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