private static enum Calculadora.EstadoEscritura extends java.lang.Enum<Calculadora.EstadoEscritura>
| Modifier and Type | Method and Description | 
|---|---|
static Calculadora.EstadoEscritura | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Calculadora.EstadoEscritura[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Calculadora.EstadoEscritura RESET
public static final Calculadora.EstadoEscritura ENTERO
public static final Calculadora.EstadoEscritura DECIMAL
public static Calculadora.EstadoEscritura[] values()
for (Calculadora.EstadoEscritura c : Calculadora.EstadoEscritura.values()) System.out.println(c);
public static Calculadora.EstadoEscritura valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null