|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
java.lang.Objectnet.sf.saxon.value.Value
net.sf.saxon.value.AtomicValue
net.sf.saxon.value.BooleanValue
public final class BooleanValue
A boolean XPath value
| Field Summary | |
|---|---|
static BooleanValue |
FALSE
The boolean value FALSE |
static BooleanValue |
TRUE
The boolean value TRUE |
| Fields inherited from class net.sf.saxon.value.Value |
|---|
EMPTY_CLASS_ARRAY, INDETERMINATE_ORDERING |
| Fields inherited from interface net.sf.saxon.om.ValueRepresentation |
|---|
EMPTY_VALUE_ARRAY |
| Constructor Summary | |
|---|---|
BooleanValue(boolean value,
AtomicType typeLabel)
Create a new Boolean value with a user-supplied type label. |
|
| Method Summary | |
|---|---|
int |
compareTo(Object other)
Compare the value to another boolean value |
AtomicValue |
convertPrimitive(BuiltInAtomicType requiredType,
boolean validate,
XPathContext context)
Convert to target data type |
Object |
convertToJava(Class target,
XPathContext context)
Convert to Java object (for passing to external functions) |
AtomicValue |
copy(AtomicType typeLabel)
Create a copy of this atomic value (usually so that the type label can be changed). |
boolean |
effectiveBooleanValue()
Get the effective boolean value of this expression |
boolean |
equals(Object other)
Determine whether two boolean values are equal |
static AtomicValue |
fromString(CharSequence s)
Convert a string to a boolean value, using the XML Schema rules (including whitespace trimming) |
static BooleanValue |
get(boolean value)
Factory method: get a BooleanValue |
boolean |
getBooleanValue()
Get the value |
BuiltInAtomicType |
getPrimitiveType()
Determine the primitive type of the value. |
String |
getStringValue()
Convert to string |
Comparable |
getXPathComparable()
Get a Comparable value that implements the XPath ordering comparison semantics for this value. |
int |
hashCode()
Get a hash code for comparing two BooleanValues |
String |
toString()
Diagnostic display of this value as a string |
| Methods inherited from class net.sf.saxon.value.AtomicValue |
|---|
checkPermittedContents, convert, convert, getCardinality, getComponent, getItemType, getLength, getStringValueCS, getTypedValue, getTypeLabel, hasBuiltInType, isMultiValued, itemAt, iterate, process, setTypeLabel |
| Methods inherited from class net.sf.saxon.value.Value |
|---|
asItem, asItem, asIterator, asValue, convert, convertJavaObjectToXPath, fromItem, getCanonicalLexicalRepresentation, getIterator, getSchemaComparable, iterate, makeQNameValue, reduce, stringToNumber |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final BooleanValue TRUE
public static final BooleanValue FALSE
| Constructor Detail |
|---|
public BooleanValue(boolean value,
AtomicType typeLabel)
| Method Detail |
|---|
public static BooleanValue get(boolean value)
value - true or false, to determine which boolean value is
required
public AtomicValue copy(AtomicType typeLabel)
copy in class AtomicValuetypeLabel - public static AtomicValue fromString(CharSequence s)
s - the input string
public boolean getBooleanValue()
public boolean effectiveBooleanValue()
effectiveBooleanValue in class AtomicValuepublic BuiltInAtomicType getPrimitiveType()
getPrimitiveType in class AtomicValue
public AtomicValue convertPrimitive(BuiltInAtomicType requiredType,
boolean validate,
XPathContext context)
convertPrimitive in class AtomicValuerequiredType - an integer identifying the required atomic typecontext - validate - true if validation is required. If set to false, the caller guarantees that
the value is valid for the target data type, and that further validation is therefore not required.
Note that a validation failure may be reported even if validation was not requested.
public String getStringValue()
getStringValue in interface ItemgetStringValue in interface ValueRepresentationgetStringValue in class AtomicValueItem.getStringValueCS()
public Object convertToJava(Class target,
XPathContext context)
throws XPathException
convertToJava in class Valuetarget - the Java class to which conversion is required
XPathException - if conversion is not possible or failspublic Comparable getXPathComparable()
getXPathComparable in class AtomicValuepublic int compareTo(Object other)
compareTo in interface ComparablecompareTo in class Valueother - The other boolean value
ClassCastException - if the other value is not a BooleanValue
(the parameter is declared as Object to satisfy the Comparable
interface)public boolean equals(Object other)
equals in class Valueother - the value to be compared to this value
ClassCastException - if other value is not xs:boolean or derived therefrompublic int hashCode()
hashCode in class Valuepublic String toString()
toString in class AtomicValue
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||