Interface ILcdGML3CodeList


public interface ILcdGML3CodeList
Deprecated.
This class has been deprecated. The GML decoders and encoders in the com.luciad.format.gml3.* packages are replaced by new decoders and encoders in the packages com.luciad.format.gml2.xml, com.luciad.format.gml31.xml and com.luciad.format.gml32.xml.
Interface for the gml:CodeListType type.

List of values on a uniform nominal scale. List of text tokens. In a list context a token should not include any spaces, so xsd:Name is used instead of xsd:string.

If a codeSpace attribute is present, then its value is a reference to a Reference System for the value, a dictionary or code list.

(GML Specification, v3.1.0, paragraph 7.3.4.2)

  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    getCode(int aIndex)
    Deprecated.
    Returns the code at the given index.
    int
    Deprecated.
    Returns the number of codes contained in this codelist.
    Deprecated.
    Returns the codespace that applies to the codes in this codelist.
    void
    setCodes(String[] aCodes)
    Deprecated.
    Sets the codes to be contained in this codelist.
    void
    setCodeSpace(String aCodeSpace)
    Deprecated.
    Sets the codespace that applies to the codes in this codelist.
  • Method Details Link icon

    • getCode Link icon

      String getCode(int aIndex)
      Deprecated.
      Returns the code at the given index.
      Parameters:
      aIndex - the index of the code to be returned.
      Returns:
      the code at the given index.
      Throws:
      IndexOutOfBoundsException - if aIndex < 0 || aIndex >= getCodeCount()
    • getCodeCount Link icon

      int getCodeCount()
      Deprecated.
      Returns the number of codes contained in this codelist.
      Returns:
      the number of codes contained in this codelist.
    • getCodeSpace Link icon

      String getCodeSpace()
      Deprecated.
      Returns the codespace that applies to the codes in this codelist.
      Returns:
      the codespace that applies to the codes in this codelist.
    • setCodes Link icon

      void setCodes(String[] aCodes)
      Deprecated.
      Sets the codes to be contained in this codelist.
      Parameters:
      aCodes - the codes to be contained in this codelist.
    • setCodeSpace Link icon

      void setCodeSpace(String aCodeSpace)
      Deprecated.
      Sets the codespace that applies to the codes in this codelist.
      Parameters:
      aCodeSpace - the codespace that applies to the codes in this codelist.