Package com.aspose.tasks
Class OutlineCode
- java.lang.Object
-
- com.aspose.tasks.OutlineCode
-
public class OutlineCode extends Object
Represents a value of an outline code.
Two pieces of data are necessary - a pointer to the outline code table that is specified by the FieldId, and the value that is specified either by the ValueId or ValueGuid pointer to the value list.
-
-
Constructor Summary
Constructors Constructor Description OutlineCode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFieldId()
Gets the number value of the project Id custom field.String
getValueGuid()
Gets the GUID of the value in the value list.int
getValueId()
Gets the Id in the value list associated with the definition in the outline code collection.void
setFieldId(String value)
Sets the number value of the project Id custom field.void
setValueGuid(String value)
Sets the GUID of the value in the value list.void
setValueId(int value)
Sets the Id in the value list associated with the definition in the outline code collection.
-
-
-
Method Detail
-
getFieldId
public final String getFieldId()
Gets the number value of the project Id custom field.
- Returns:
- the number value of the project Id custom field.
-
setFieldId
public final void setFieldId(String value)
Sets the number value of the project Id custom field.
- Parameters:
value
- the number value of the project Id custom field.
-
getValueGuid
public final String getValueGuid()
Gets the GUID of the value in the value list. The ValueGuid matches the FieldGuid in the value list.
- Returns:
- the GUID of the value in the value list.
-
setValueGuid
public final void setValueGuid(String value)
Sets the GUID of the value in the value list. The ValueGuid matches the FieldGuid in the value list.
- Parameters:
value
- the GUID of the value in the value list.
-
getValueId
public final int getValueId()
Gets the Id in the value list associated with the definition in the outline code collection.
- Returns:
- the Id in the value list associated with the definition in the outline code collection.
-
setValueId
public final void setValueId(int value)
Sets the Id in the value list associated with the definition in the outline code collection.
- Parameters:
value
- the Id in the value list associated with the definition in the outline code collection.
-
-