Class TLcdS57EditableIdentifier

java.lang.Object
com.luciad.format.s57.TLcdS57EditableIdentifier
All Implemented Interfaces:
ILcdS57Identifier, ILcdFeatured, Serializable

public class TLcdS57EditableIdentifier extends Object implements ILcdS57Identifier, ILcdFeatured
Deprecated.
Use TLcdS57Identifier instead.
Implementation of an ILcdS57Identifier that can contain more than one attribute.
See Also:
  • Constructor Details

    • TLcdS57EditableIdentifier

      public TLcdS57EditableIdentifier(int aObjectClassCode)
      Deprecated.
      Constructs a new S-57 editable identifier, initialized with the given object class code.
      Parameters:
      aObjectClassCode -
    • TLcdS57EditableIdentifier

      public TLcdS57EditableIdentifier(TLcdS57ObjectClassDescriptor aObjectClassDescriptor)
      Deprecated.
      Constructs a new S-57 editable identifier, initialized with the given object class descriptor.
      Parameters:
      aObjectClassDescriptor -
  • Method Details

    • getLongName

      public long getLongName()
      Deprecated.
      Description copied from interface: ILcdS57Identifier
      Gets the "Long Name" of this S-57 feature object.

      The "Long Name" is also known as "feature object identifier", or LNAM. It is a representation of the FOID (Feature Object Identifier) fields.

      More specifically, it is a "binary concatenation" (FIDS << 48) | (FIDN << 16) | AGEN, where:

      • AGEN (Producing Agency)
      • FIDN (Feature Identification Number)
      • FIDS (Feature Identification Subdivision)

      Specified by:
      getLongName in interface ILcdS57Identifier
      Returns:
      The long name, or -1 if unknown
    • getObjectClassDescriptor

      public TLcdS57ObjectClassDescriptor getObjectClassDescriptor()
      Deprecated.
      Returns the S-57 object class descriptor, describing this identifier.
      Returns:
      the S-57 object class descriptor, describing this identifier.
    • addAttribute

      public void addAttribute(ILcdS57Attribute aAttribute)
      Deprecated.
      Adds the given attribute to this S-57 identifier. If an attribute with the same code already exists, it is replaced by the new one.
      Parameters:
      aAttribute - the attribute to be added to this S-57 identifier.
    • removeAttribute

      public void removeAttribute(ILcdS57Attribute aAttribute)
      Deprecated.
      Removes the specified attribute from this S-57 identifier.
      Parameters:
      aAttribute - the attribute to be removed.
      Throws:
      IllegalArgumentException - if the specified attribute is not an attribute of this S-57 identifier.
    • getS57ObjectClass

      public int getS57ObjectClass()
      Deprecated.
      Description copied from interface: ILcdS57Identifier
      Gets the object class.
      Specified by:
      getS57ObjectClass in interface ILcdS57Identifier
    • getS57AttributeCount

      public int getS57AttributeCount()
      Deprecated.
      Description copied from interface: ILcdS57Identifier
      Gets the number of TLcdS57Attributes stored in this identifier.
      Specified by:
      getS57AttributeCount in interface ILcdS57Identifier
    • getS57Attribute

      public ILcdS57Attribute getS57Attribute(int aIndex)
      Deprecated.
      Description copied from interface: ILcdS57Identifier
      Gets the TLcdS57Attribute at a given index.
      Specified by:
      getS57Attribute in interface ILcdS57Identifier
    • getS57AttributeForCode

      public ILcdS57Attribute getS57AttributeForCode(int aCode)
      Deprecated.
      Description copied from interface: ILcdS57Identifier
      Gets the TLcdS57Attribute that has the given code.
      Specified by:
      getS57AttributeForCode in interface ILcdS57Identifier
    • isSimilar

      public boolean isSimilar(ILcdS57Identifier aIdentifier)
      Deprecated.
      Description copied from interface: ILcdS57Identifier
      Returns whether the given identifier is similar to this identifier, meaning they have the same object class and attribute values, but that the given identifier can have more attributes than this one.
      Specified by:
      isSimilar in interface ILcdS57Identifier
    • canSetFeature

      public boolean canSetFeature(int aIndex)
      Deprecated.
      Description copied from interface: ILcdFeatured
      Checks whether the specified feature is editable.
      Specified by:
      canSetFeature in interface ILcdFeatured
      Parameters:
      aIndex - a valid feature index.
      Returns:
      true if the feature can be set, false otherwise.
    • getFeature

      public Object getFeature(int aIndex) throws IndexOutOfBoundsException
      Deprecated.
      Description copied from interface: ILcdFeatured
      Returns the feature Object at the given index.
      Specified by:
      getFeature in interface ILcdFeatured
      Parameters:
      aIndex - a valid feature index.
      Returns:
      the feature Object at the given index.
      Throws:
      IndexOutOfBoundsException - when an index is chosen greater than the result of getFeatureCount.
      See Also:
    • getFeatureCount

      public int getFeatureCount()
      Deprecated.
      Description copied from interface: ILcdFeatured
      Returns the number of features.
      Specified by:
      getFeatureCount in interface ILcdFeatured
      Returns:
      the number of features.
    • setFeature

      public void setFeature(int aIndex, Object aFeature) throws IllegalArgumentException
      Deprecated.
      Description copied from interface: ILcdFeatured
      Sets the feature Object at the given index.
      Specified by:
      setFeature in interface ILcdFeatured
      Parameters:
      aIndex - a valid feature index.
      aFeature - the new feature Object.
      Throws:
      IllegalArgumentException - if the feature can't be set.
      See Also:
    • equals

      public boolean equals(Object o)
      Deprecated.
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Deprecated.
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Deprecated.
      Overrides:
      toString in class Object