UserConfigurationDictionaryObjectTypesType
extends Enumeration
in package
Defines a dictionary object's type.
Table of Contents
Constants
- BOOLEAN = 'Boolean'
- Defines the object's type as a boolean.
- BYTE = 'Byte'
- Defines the object's type as a byte.
- BYTE_ARRAY = 'ByteArray'
- Defines the object's type as an array of bytes.
- DATE_TIME = 'DateTime'
- Defines the object's type as a date and time.
- INTEGER_32 = 'Integer32'
- Defines the object's type as a 32-bit integer.
- INTEGER_64 = 'Integer64'
- Defines the object's type as a 64-bit integer.
- STRING = 'String'
- Defines the object's type as a string.
- STRING_ARRAY = 'StringArray'
- Defines the object's type as an array of strings.
- UNSIGNED_INTEGER_32 = 'UnsignedInteger32'
- Defines the object's type as an unsigned 32-bit integer.
- UNSIGNED_INTEGER_64 = 'UnsignedInteger64'
- Defines the object's type as an unsigned 64-bit integer.
Properties
- $_ : string
- Element value.
Methods
- __clone() : mixed
- Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
- __toString() : string
- Returns the value of this enumeration as a string.
Constants
BOOLEAN
Defines the object's type as a boolean.
public
string
BOOLEAN
= 'Boolean'
Tags
BYTE
Defines the object's type as a byte.
public
string
BYTE
= 'Byte'
Tags
BYTE_ARRAY
Defines the object's type as an array of bytes.
public
string
BYTE_ARRAY
= 'ByteArray'
Tags
DATE_TIME
Defines the object's type as a date and time.
public
string
DATE_TIME
= 'DateTime'
Tags
INTEGER_32
Defines the object's type as a 32-bit integer.
public
string
INTEGER_32
= 'Integer32'
Tags
INTEGER_64
Defines the object's type as a 64-bit integer.
public
string
INTEGER_64
= 'Integer64'
Tags
STRING
Defines the object's type as a string.
public
string
STRING
= 'String'
Tags
STRING_ARRAY
Defines the object's type as an array of strings.
public
string
STRING_ARRAY
= 'StringArray'
Tags
UNSIGNED_INTEGER_32
Defines the object's type as an unsigned 32-bit integer.
public
string
UNSIGNED_INTEGER_32
= 'UnsignedInteger32'
Tags
UNSIGNED_INTEGER_64
Defines the object's type as an unsigned 64-bit integer.
public
string
UNSIGNED_INTEGER_64
= 'UnsignedInteger64'
Tags
Properties
$_
Element value.
public
string
$_
Tags
Methods
__clone()
Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
public
__clone() : mixed
__toString()
Returns the value of this enumeration as a string.
public
__toString() : string
.