Property Set Methods for Siebel Java Data Bean

Property Set Methods for Siebel Java Data Bean describes a summary of property set methods you can use with Siebel Java Data Bean.

Method Description Format

AddChild Method for a Property Set

Adds child property sets to a property set.

int addChild(SiebelPropertySet propertySet)

Copy Method for a Property Set

Returns a copy of a property set.

SiebelPropertySet copy(SiebelPropertySet propertySet)

GetByteValue Method for a Property Set

Returns a byte array if a byte value is set.

public byte[] getByteValue()

GetChild Method for a Property Set

Returns a child property set of a property set.

SiebelPropertySet getChild(int index)

GetChildCount Method for a Property Set

Returns the number of child property sets that exist for a parent property set.

int getChildCount()

GetFirstProperty Method for a Property Set

Returns the name of the first property in a property set.

String getFirstProperty()

GetNextProperty Method for a Property Set

Returns the name of the next property in a property set.

String getNextProperty()

GetProperty Method for a Property Set

Returns the value of a property.

String getProperty(String propertyName)

GetPropertyCount Method for a Property Set

Returns the number of properties that exist in the current level in the hierarchy.

int GetPropertyCount()

GetType Method for a Property Set

Returns the value of the type attribute of a property set.

String getType()

GetValue Method for a Property Set

Returns the value of the value attribute of a property set.

String getValue()

InsertChildAt Method for a Property Set

Inserts a child property set in a parent property set at a specific location.

boolean insertChildAt(SiebelPropertySet propertySet, int index)

PropertyExists Method for a Property Set

Returns a Boolean value that indicates if the property that the argument identifies exists.

boolean propertyExists(String propertyName)

RemoveChild Method for a Property Set

Removes a child property set from a parent property set.

boolean removeChild(int index)

RemoveProperty Method for a Property Set

Removes a property from a property set.

boolean removeProperty(String propertyName)

Reset Method for a Property Set

Removes every property and child property set from a property set.

boolean reset()

SetByteValue Method for a Property Set

Sets the value portion of a property set.

public void setByteValue(byte[] value)

SetProperty Method for a Property Set

Sets a value in the property of a property set.

boolean setProperty(String propertyName, String propertyValue)

SetType Method for a Property Set

Sets the value for the type attribute of a property set.

boolean setType(String type)

SetValue Method for a Property Set

Sets the value for the value attribute of a property set.

boolean setValue(String value)