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 SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Missing.ExtendedvalueOf(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- 
_syspublic static final Missing.Extended _sys 
 - 
apublic static final Missing.Extended a 
 - 
bpublic static final Missing.Extended b 
 - 
cpublic static final Missing.Extended c 
 - 
dpublic static final Missing.Extended d 
 - 
epublic static final Missing.Extended e 
 - 
fpublic static final Missing.Extended f 
 - 
gpublic static final Missing.Extended g 
 - 
hpublic static final Missing.Extended h 
 - 
ipublic static final Missing.Extended i 
 - 
jpublic static final Missing.Extended j 
 - 
kpublic static final Missing.Extended k 
 - 
lpublic static final Missing.Extended l 
 - 
mpublic static final Missing.Extended m 
 - 
npublic static final Missing.Extended n 
 - 
opublic static final Missing.Extended o 
 - 
ppublic static final Missing.Extended p 
 - 
qpublic static final Missing.Extended q 
 - 
rpublic static final Missing.Extended r 
 - 
spublic static final Missing.Extended s 
 - 
tpublic static final Missing.Extended t 
 - 
upublic static final Missing.Extended u 
 - 
vpublic static final Missing.Extended v 
 - 
wpublic static final Missing.Extended w 
 - 
xpublic static final Missing.Extended x 
 - 
ypublic static final Missing.Extended y 
 - 
zpublic static final Missing.Extended z 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-