Package com.stata.sfi
Enum Missing.Extended
- java.lang.Object
-
- java.lang.Enum<Missing.Extended>
-
- com.stata.sfi.Missing.Extended
-
- All Implemented Interfaces:
Serializable
,Comparable<Missing.Extended>
- Enclosing class:
- Missing
public static enum Missing.Extended extends Enum<Missing.Extended>
Mappings that correspond to missing values in Stata.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Missing.Extended
valueOf(String name)
Returns the enum constant of this type with the specified name.static Missing.Extended[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_sys
public static final Missing.Extended _sys
-
a
public static final Missing.Extended a
-
b
public static final Missing.Extended b
-
c
public static final Missing.Extended c
-
d
public static final Missing.Extended d
-
e
public static final Missing.Extended e
-
f
public static final Missing.Extended f
-
g
public static final Missing.Extended g
-
h
public static final Missing.Extended h
-
i
public static final Missing.Extended i
-
j
public static final Missing.Extended j
-
k
public static final Missing.Extended k
-
l
public static final Missing.Extended l
-
m
public static final Missing.Extended m
-
n
public static final Missing.Extended n
-
o
public static final Missing.Extended o
-
p
public static final Missing.Extended p
-
q
public static final Missing.Extended q
-
r
public static final Missing.Extended r
-
s
public static final Missing.Extended s
-
t
public static final Missing.Extended t
-
u
public static final Missing.Extended u
-
v
public static final Missing.Extended v
-
w
public static final Missing.Extended w
-
x
public static final Missing.Extended x
-
y
public static final Missing.Extended y
-
z
public static final Missing.Extended z
-
-
Method Detail
-
values
public static Missing.Extended[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Missing.Extended c : Missing.Extended.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Missing.Extended valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-