Class Option
java.lang.Object
com.appiancorp.suiteapi.process.forms.Option
- All Implemented Interfaces:
DeepCloneable
,XMLable
,Serializable
,Cloneable
- See Also:
-
Field Summary
Fields inherited from interface com.appiancorp.suiteapi.common.XMLable
DEFAULT_BUFFER_SIZE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Clone this object.boolean
getId()
getValue()
void
setDefault
(boolean default_) void
void
toXML()
Generates an XML representation of this object (including all child objects).void
toXML
(StringBuilder buffer_) Appends an XML representation of this object (including all child objects) to the given buffer.
-
Field Details
-
LOG
protected static final org.apache.log4j.Logger LOG
-
-
Constructor Details
-
Option
public Option()
-
-
Method Details
-
clone
Clone this object.- Specified by:
clone
in interfaceDeepCloneable
- Overrides:
clone
in classObject
- Returns:
-
getDefault
public boolean getDefault() -
setDefault
public void setDefault(boolean default_) -
getId
-
setId
-
getValue
-
setValue
-
toXML
Description copied from interface:XMLable
Generates an XML representation of this object (including all child objects). A typical implementation is to create a newStringBuilder
and calltoXML( StringBuilder )
on it. -
toXML
Description copied from interface:XMLable
Appends an XML representation of this object (including all child objects) to the given buffer. Override for performance.
-