public enum CTipoSerie extends Enum<CTipoSerie>
Java class for c_TipoSerie.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="c_TipoSerie"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="SERIE A"/> <enumeration value="SERIE B"/> <enumeration value="SERIE C"/> <enumeration value="SERIE D"/> <enumeration value="SERIE E"/> </restriction> </simpleType>
Enum Constant and Description |
---|
SERIE_A |
SERIE_B |
SERIE_C |
SERIE_D |
SERIE_E |
Modifier and Type | Method and Description |
---|---|
static CTipoSerie |
fromValue(String v) |
String |
value() |
static CTipoSerie |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CTipoSerie[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CTipoSerie SERIE_A
public static final CTipoSerie SERIE_B
public static final CTipoSerie SERIE_C
public static final CTipoSerie SERIE_D
public static final CTipoSerie SERIE_E
public static CTipoSerie[] values()
for (CTipoSerie c : CTipoSerie.values()) System.out.println(c);
public static CTipoSerie 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()
public static CTipoSerie fromValue(String v)
Copyright © 2010–2018. All rights reserved.