public enum BlockIndicator extends Enum<BlockIndicator>
Java class for BlockIndicator.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="BlockIndicator">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="B"/>
     <enumeration value="I"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| Bindicating an altitude block | 
| Iindicating individual altitudes | 
| Modifier and Type | Method and Description | 
|---|---|
| static BlockIndicator | fromValue(String v) | 
| String | value() | 
| static BlockIndicator | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static BlockIndicator[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final BlockIndicator B
public static final BlockIndicator I
public static BlockIndicator[] values()
for (BlockIndicator c : BlockIndicator.values()) System.out.println(c);
public static BlockIndicator 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 BlockIndicator fromValue(String v)
Copyright © 2017. All rights reserved.