Methods Summary |
---|
public void | addValue(int attributes, java.lang.Object value)Adds a value to a PIM field.
|
public boolean | containsData()Checks field for contents.
return false;
|
public int | getAttributes(int index)Gets the field attributes.
throw new IndexOutOfBoundsException("No data in field");
|
public java.lang.Object | getValue(int index)Gets current value.
return null;
|
public int | getValueCount()Gets the count of values.
return 0;
|
public boolean | isScalar()Check if field contains scalar value.
return true;
|
public void | removeValue(int index)Removes the value.
|
public void | setValue(int attributes, java.lang.Object value, int index)Sets the field value.
|