public class OutlineValue extends Object
Represents an outline value.
Constructor and Description |
---|
OutlineValue() |
Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Gets the description of an outline value.
|
Duration |
getDurationValue()
Gets the duration if Type is Duration.
|
int |
getParentValueId()
Gets the Id of a parent node of an outline code.
|
int |
getType()
Gets the outline code type.
|
String |
getValue()
Gets the actual value.
|
UUID |
getValueGuid()
Gets a GUID which identifies this value among others in the entire project.
|
int |
getValueId()
Gets the unique Id of an outline code value within a project.
|
boolean |
isCollapsed()
Gets a value indicating whether outline value is collapsed or not.
|
void |
setCollapsed(boolean value)
Sets a value indicating whether outline value is collapsed or not.
|
void |
setDescription(String value)
Sets the description of an outline value.
|
void |
setDurationValue(Duration value)
Sets the duration if Type is Duration.
|
void |
setParentValueId(int value)
Sets the Id of a parent node of an outline code.
|
void |
setType(int value)
Sets the outline code type.
|
void |
setValue(String value)
Sets the actual value.
|
void |
setValueId(int value)
Sets the unique Id of an outline code value within a project.
|
public final String getDescription()
Gets the description of an outline value.
public final void setDescription(String value)
Sets the description of an outline value.
value
- the description of an outline value.public final Duration getDurationValue()
Gets the duration if Type is Duration.
Value
(getValue()
/setValue(String)
), when you need to set
the value for OutlineValues with Duration type .
public final void setDurationValue(Duration value)
Sets the duration if Type is Duration.
Value
(getValue()
/setValue(String)
), when you need to set
the value for OutlineValues with Duration type .
value
- the duration if Type is Duration.public final int getParentValueId()
Gets the Id of a parent node of an outline code.
public final void setParentValueId(int value)
Sets the Id of a parent node of an outline code.
value
- the Id of a parent node of an outline code.public final int getType()
Gets the outline code type.
public final void setType(int value)
Sets the outline code type.
value
- the outline code type.public final String getValue()
Gets the actual value.
public final void setValue(String value)
Sets the actual value.
value
- the actual value.public final UUID getValueGuid()
Gets a GUID which identifies this value among others in the entire project.
public final int getValueId()
Gets the unique Id of an outline code value within a project.
public final void setValueId(int value)
Sets the unique Id of an outline code value within a project.
value
- the unique Id of an outline code value within a project.public final boolean isCollapsed()
Gets a value indicating whether outline value is collapsed or not.
public final void setCollapsed(boolean value)
Sets a value indicating whether outline value is collapsed or not.
value
- a value indicating whether outline value is collapsed or not.