org.sdmx.resources.sdmxml.schemas.v2_0.structure
Enum RepresentationSchemeTypeType

java.lang.Object
  extended by java.lang.Enum<RepresentationSchemeTypeType>
      extended by org.sdmx.resources.sdmxml.schemas.v2_0.structure.RepresentationSchemeTypeType
All Implemented Interfaces:
Serializable, Comparable<RepresentationSchemeTypeType>

public enum RepresentationSchemeTypeType
extends Enum<RepresentationSchemeTypeType>

Java class for RepresentationSchemeTypeType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="RepresentationSchemeTypeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
     <enumeration value="Codelist"/>
     <enumeration value="Concept"/>
     <enumeration value="Category"/>
     <enumeration value="Organisation"/>
     <enumeration value="External"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CATEGORY
          Representation scheme is a category scheme.
CODELIST
          Representation scheme is a codelist.
CONCEPT
          Representation scheme is a concept scheme.
EXTERNAL
          Representation scheme is "external" to the known model - that is, it cannot be enumerated at the time the report is designed.
ORGANISATION
          Representation scheme is an organisation scheme.
 
Method Summary
static RepresentationSchemeTypeType fromValue(String v)
           
 String value()
           
static RepresentationSchemeTypeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RepresentationSchemeTypeType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CODELIST

public static final RepresentationSchemeTypeType CODELIST
Representation scheme is a codelist.


CONCEPT

public static final RepresentationSchemeTypeType CONCEPT
Representation scheme is a concept scheme.


CATEGORY

public static final RepresentationSchemeTypeType CATEGORY
Representation scheme is a category scheme.


ORGANISATION

public static final RepresentationSchemeTypeType ORGANISATION
Representation scheme is an organisation scheme.


EXTERNAL

public static final RepresentationSchemeTypeType EXTERNAL
Representation scheme is "external" to the known model - that is, it cannot be enumerated at the time the report is designed. This will only be valid if some maintained and changing object is to have metadata reported against it: for example, if the concepts of dimension objects are to be reported against for all of an agencies' key families, then it is not possible at design time to enumerate all of the concepts which will be used by that agencies' key families into the future. This value should not be used unless absolutely necessary, as it reduces the processability of the metadata report generated.

Method Detail

values

public static RepresentationSchemeTypeType[] 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 (RepresentationSchemeTypeType c : RepresentationSchemeTypeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RepresentationSchemeTypeType 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

value

public String value()

fromValue

public static RepresentationSchemeTypeType fromValue(String v)


Copyright © 2012. All Rights Reserved.