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