ValidatedInfopublic class ValidatedInfo extends Object Class to get the information back after content is validated. This info
would be filled by validate(). |
Fields Summary |
---|
public String | normalizedValueThe normalized value of a string value | public Object | actualValueThe actual value from a string value (QName, Boolean, etc.)
An array of Objects if the type is a list. | public short | actualValueTypeThe type of the actual value. It's one of the _DT constants
defined in XSConstants.java. The value is used to indicate
the most specific built-in type.
(i.e. short instead of decimal or integer). | public XSSimpleType | memberTypeIf the type is a union type, then the member type which
actually validated the string value. | public XSSimpleType[] | memberTypesIf
1. the type is a union type where one of the member types is a list, or
if the type is a list; and
2. the item type of the list is a union type
then an array of member types used to validate the values. | public ShortList | itemValueTypesIn the case the value is a list or a list of unions, this value
indicates the type(s) of the items in the list.
For a normal list, the length of the array is 1; for list of unions,
the length of the array is the same as the length of the list. |
Methods Summary |
---|
public void | reset()reset the state of this object
this.normalizedValue = null;
this.actualValue = null;
this.memberType = null;
this.memberTypes = null;
| public java.lang.String | stringValue()Return a string representation of the value. If there is an actual
value, use toString; otherwise, use the normalized value.
if (actualValue == null)
return normalizedValue;
else
return actualValue.toString();
|
|