站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 3.2.7 jaxrpc API Documentation 英文版文档

NormalizedString (JAXRPC API) - JBoss 3.2.7 jaxrpc API Documentation 英文版文档


org.apache.axis.types
Class NormalizedString

java.lang.Object
  extended byorg.apache.axis.types.NormalizedString
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Token

public class NormalizedString
extends Object
implements Serializable

Custom class for supporting XSD data type NormalizedString. normalizedString represents white space normalized strings. The base type of normalizedString is string.

Author:
Chris Haddad
See Also:
XML Schema Part 2: Datatypes 3.3.1, Serialized Form

Constructor Summary
NormalizedString()
           
NormalizedString(String stValue)
          ctor for NormalizedString
 
Method Summary
 boolean equals(Object object)
           
 int hashCode()
           
 boolean isValid(String stValue)
          validate the value against the xsd definition for the object

The value space of normalizedString is the set of strings that do not contain the carriage return (#xD), line feed (#xA) nor tab (#x9) characters.

 void setValue(String stValue)
          validates the data and sets the value for the object.
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NormalizedString

public NormalizedString()

NormalizedString

public NormalizedString(String stValue)
                 throws IllegalArgumentException
ctor for NormalizedString

Parameters:
stValue - is the String value
Throws:
IllegalArgumentException - if invalid format
Method Detail

setValue

public void setValue(String stValue)
              throws IllegalArgumentException
validates the data and sets the value for the object.

Throws:
IllegalArgumentException - if invalid format

toString

public String toString()

hashCode

public int hashCode()

isValid

public boolean isValid(String stValue)
validate the value against the xsd definition for the object

The value space of normalizedString is the set of strings that do not contain the carriage return (#xD), line feed (#xA) nor tab (#x9) characters. The lexical space of normalizedString is the set of strings that do not contain the carriage return (#xD) nor tab (#x9) characters.


equals

public boolean equals(Object object)


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.