ContentTypeProperty
Contents
[
Hide
]ContentTypeProperty class
Represents identifier information.
class ContentTypeProperty;
Methods
Method | Description |
---|---|
getName() | Returns or sets the name of the object. |
setName(string) | Returns or sets the name of the object. |
getValue() | Returns or sets the value of the content type property. |
setValue(string) | Returns or sets the value of the content type property. |
getType() | Gets and sets the type of the property. |
setType(string) | Gets and sets the type of the property. |
isNillable() | Indicates whether the value could be empty. |
setIsNillable(boolean) | Indicates whether the value could be empty. |
isNull() | Checks whether the implementation object is null. |
getName()
Returns or sets the name of the object.
getName() : string;
setName(string)
Returns or sets the name of the object.
setName(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getValue()
Returns or sets the value of the content type property.
getValue() : string;
setValue(string)
Returns or sets the value of the content type property.
setValue(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getType()
Gets and sets the type of the property.
getType() : string;
setType(string)
Gets and sets the type of the property.
setType(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isNillable()
Indicates whether the value could be empty.
isNillable() : boolean;
setIsNillable(boolean)
Indicates whether the value could be empty.
setIsNillable(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;