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