Méthode | Description | |
---|---|---|
CharacterArrayTransform ( Class, entry ) : System |
Constructor for the
|
|
Read ( String value ) : Object |
This method is used to convert the string value given to an appropriate representation. This is used when an object is being deserialized from the XML document and the value for the string representation is required.
|
|
Read ( char list, int length ) : Object |
This method is used to convert the string value given to an appropriate representation. This is used when an object is being deserialized from the XML document and the value for the string representation is required.
|
|
Write ( Object value ) : String |
This method is used to convert the provided value into an XML usable format. This is used in the serialization process when there is a need to convert a field value in to a string so that that value can be written as a valid XML entity.
|
|
Write ( Object value, int length ) : String |
This method is used to convert the provided value into an XML usable format. This is used in the serialization process when there is a need to convert a field value in to a string so that that value can be written as a valid XML entity.
|
public CharacterArrayTransform ( Class, entry ) : System | ||
entry | Class, | /// this is the entry component type for the array /// |
Résultat | System |
public Read ( String value ) : Object | ||
value | String | /// this is the string representation of the value /// |
Résultat | Object |
public Read ( char list, int length ) : Object | ||
list | char | /// this is the string representation of the value /// |
length | int | /// this is the number of string values to use /// |
Résultat | Object |
public Write ( Object value ) : String | ||
value | Object | /// this is the value to be converted to a string /// |
Résultat | String |
public Write ( Object value, int length ) : String | ||
value | Object | /// this is the value to be converted to a string /// |
length | int | |
Résultat | String |