gnu.xml.validation.datatype

Class SimpleType

Implemented Interfaces:
Datatype
Known Direct Subclasses:
AtomicSimpleType, ListSimpleType, UnionSimpleType

public class SimpleType
extends Type
implements Datatype

An XML Schema simple type.

Field Summary

static int
ANY
The variety of the anySimpleType datatype.
static int
ATOMIC
The atomic variety.
static int
ID_TYPE_ID
static int
ID_TYPE_IDREF
static int
ID_TYPE_IDREFS
static int
ID_TYPE_NULL
static int
LIST
The list variety.
static int
UNION
The union variety.
Annotation
annotation
Optional annotation.
SimpleType
baseType
If this datatype has been derived by restriction, then the component from which it was derived.
Set
facets
The facets of this simple type.
int
fundamentalFacets
The fundamental facets of this simple type.
int
variety
The variety of this simple type.

Fields inherited from class gnu.xml.validation.datatype.Type

ANY_TYPE, name

Constructor Summary

SimpleType(QName name, int variety, Set facets, int fundamentalFacets, SimpleType baseType, Annotation annotation)

Method Summary

void
checkValid(String value, ValidationContext context)
DatatypeStreamingValidator
createStreamingValidator(ValidationContext context)
Object
createValue(String literal, ValidationContext context)
int
getIdType()
boolean
isContextDependent()
boolean
isValid(String value, ValidationContext context)
Indicates whether this type permits the specified value.
boolean
sameValue(Object value1, Object value2)
int
valueHashCode(Object value)

Methods inherited from class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Field Details

ANY

public static final int ANY
The variety of the anySimpleType datatype.
Field Value:
0

ATOMIC

public static final int ATOMIC
The atomic variety.
Field Value:
1

ID_TYPE_ID

public static final int ID_TYPE_ID
Field Value:
1

ID_TYPE_IDREF

public static final int ID_TYPE_IDREF
Field Value:
2

ID_TYPE_IDREFS

public static final int ID_TYPE_IDREFS
Field Value:
3

ID_TYPE_NULL

public static final int ID_TYPE_NULL
Field Value:
0

LIST

public static final int LIST
The list variety.
Field Value:
2

UNION

public static final int UNION
The union variety.
Field Value:
3

annotation

public final Annotation annotation
Optional annotation.

baseType

public final SimpleType baseType
If this datatype has been derived by restriction, then the component from which it was derived.

facets

public Set facets
The facets of this simple type.

fundamentalFacets

public int fundamentalFacets
The fundamental facets of this simple type.

variety

public final int variety
The variety of this simple type.

Constructor Details

SimpleType

public SimpleType(QName name,
                  int variety,
                  Set facets,
                  int fundamentalFacets,
                  SimpleType baseType,
                  Annotation annotation)

Method Details

checkValid

public void checkValid(String value,
                       ValidationContext context)
            throws DatatypeException

createStreamingValidator

public DatatypeStreamingValidator createStreamingValidator(ValidationContext context)

createValue

public Object createValue(String literal,
                          ValidationContext context)

getIdType

public int getIdType()

isContextDependent

public boolean isContextDependent()

isValid

public boolean isValid(String value,
                       ValidationContext context)
Indicates whether this type permits the specified value.

sameValue

public boolean sameValue(Object value1,
                         Object value2)

valueHashCode

public int valueHashCode(Object value)

SimpleType.java -- Copyright (C) 2006 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.