public enum MultiSectorIndicator extends Enum<MultiSectorIndicator>
Java class for MultiSectorIndicator.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="MultiSectorIndicator">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="MultiSector"/>
     <enumeration value="NotDefined"/>
     <enumeration value="OnlyOneFromSource"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| MULTI_SECTORMulti-sector data is published in official government source for the service and frequency | 
| NOT_DEFINEDThere is no defined sector data published for the service and frequency. | 
| ONLY_ONE_FROM_SOURCEThe official government source has provided only a single defined sector for the service and frequency | 
| Modifier and Type | Method and Description | 
|---|---|
| static MultiSectorIndicator | fromValue(String v) | 
| String | value() | 
| static MultiSectorIndicator | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MultiSectorIndicator[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MultiSectorIndicator MULTI_SECTOR
public static final MultiSectorIndicator NOT_DEFINED
public static final MultiSectorIndicator ONLY_ONE_FROM_SOURCE
public static MultiSectorIndicator[] values()
for (MultiSectorIndicator c : MultiSectorIndicator.values()) System.out.println(c);
public static MultiSectorIndicator 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 MultiSectorIndicator fromValue(String v)
Copyright © 2020. All rights reserved.