Uses of Class
com.infoengine.object.IeDatum

Packages that use IeDatum
com.infoengine.object   
com.infoengine.object.factory   
 

Uses of IeDatum in com.infoengine.object
 

Methods in com.infoengine.object that return IeDatum
static IeDatum XML.xmlToJava(Object o, int type)
           
 IeDatum IeNode.getDatum(AttributeIdentifier attrId)
          Returns an attribute value by attribute identifier.
 IeDatum IeMeta.firstDatum()
          Returns the first datum contained in the meta.
 IeDatum IeMeta.getDatum()
          Returns the first datum contained in the meta.
 IeDatum IeMeta.getDatumAt(int index)
          Returns the datum located at a specified index.
 IeDatum IeMeta.lastDatum()
          Returns the last datum contained in the meta.
static IeDatum IeDatum.newIeDatum(Object object)
          Factory method that accepts an object and constructs an instance with an appropriate type.
static IeDatum IeDatum.newIeDatum(AttributeIdentifier identifier, Object object)
          Factory method that accepts an object and constructs an instance with an appropriate type and a specific attribute identifier value.
 IeDatum IeAtt.firstDatum()
          Returns the first datum contained in the attribute.
 IeDatum IeAtt.getDatum()
          Returns the first datum contained in the attribute.
 IeDatum IeAtt.getDatum(AttributeIdentifier attrId)
          Returns the datum with a specific attribute identifier.
 IeDatum IeAtt.getDatumAt(int index)
          Returns the datum located at a specified index.
 IeDatum IeAtt.lastDatum()
          Returns the last datum contained in the attribute.
 

Methods in com.infoengine.object with parameters of type IeDatum
static void XML.toXMLDatum(IeDatum d, int level, PrintWriter pw, boolean readable)
           
 void IeObject.addMetaDatum(String key, IeDatum value)
          Adds meta-information of type IeDatum to the object.
 void IeObject.appendMetaDatum(String key, IeDatum value)
          Appends a value to the pre-existing value defined for a specified meta-information item.
 void IeNode.addDatum(IeDatum datum)
          Adds an attribute value by attribute identifier.
 void IeNode.removeDatum(IeDatum datum)
          Removes an attribute value by attribute identifier.
private  void IeNode._remove(AttributeTypeIdentifier attrTypeId, IeDatum datum)
           
 void IeMeta.addDatum(IeDatum datum)
          Adds a datum to the meta.
 int IeMeta.indexOfDatum(IeDatum datum)
          Returns the index of a specified datum.
 void IeMeta.removeDatum(IeDatum datum)
          Removes a specified datum from the meta.
 void IeMeta.setDatum(IeDatum datum)
          Removes any pre-existing datums contained within the meta, then sets the specified datum as the only datum in the meta.
 void IeMeta.setDatumAt(IeDatum datum, int index)
          Sets the datum located at a specified index of the meta.
 void IeAtt.addDatum(IeDatum datum)
          Adds a datum to the attribute.
 void IeAtt.appendDatum(IeDatum datum)
          Appends a datum to the attribute.
 int IeAtt.indexOfDatum(IeDatum datum)
          Returns the index of a specified datum.
 void IeAtt.removeDatum(IeDatum datum)
          Removes a specified datum from the attribute.
 void IeAtt.setDatum(IeDatum datum)
          Removes any pre-existing datums contained within the attribute, then sets the specified datum as the only datum in the attribute.
 void IeAtt.setDatumAt(IeDatum datum, int index)
          Sets the datum located at a specified index of the attribute.
 void IeAtt.addUniqueValue(IeDatum datum)
          Adds a datum to the attribute if, and only if, the attribute does not contain the datum already.
 void IeAtt.addIUniqueValue(IeDatum datum)
          Adds a datum to the attribute if, and only if, the attribute does not contain the datum already.
 

Uses of IeDatum in com.infoengine.object.factory
 

Methods in com.infoengine.object.factory with parameters of type IeDatum
 void Att.removeValue(IeDatum value)
          Removes a specific value from this attribute.
 void Att.addDatum(IeDatum value)
          Adds an object of type IeDatum as a value of the attribute.