Uses of Class
com.pervasive.datarush.encoding.text.TruthValues
-
Packages that use TruthValues Package Description com.pervasive.datarush.encoding.text Implementations of encoders of tokens into text formats.com.pervasive.datarush.functions Provides classes and interfaces related to defining functions on records.com.pervasive.datarush.schema Provides an object model for capturing schema information used primarily by thetextfile
package. -
-
Uses of TruthValues in com.pervasive.datarush.encoding.text
Subclasses of TruthValues in com.pervasive.datarush.encoding.text Modifier and Type Class Description class
ExactTruthMapping
A one-to-one mapping of strings to boolean values which does case-sensitive comparisons.class
InsensitiveTruthMapping
A one-to-one mapping of strings to boolean values which does case-insensitive comparisons.Constructors in com.pervasive.datarush.encoding.text with parameters of type TruthValues Constructor Description BooleanFormatter(TruthValues mapping)
Creates a formatter using the specified mapping.BooleanFormatter(TruthValues mapping, String nullIndicator)
Creates a formatter using the specified mapping.BooleanParser(TruthValues mapping)
Creates a parser using the specified mapping.BooleanParser(TruthValues mapping, String nullIndicator)
Creates a parser using the specified mapping. -
Uses of TruthValues in com.pervasive.datarush.functions
Methods in com.pervasive.datarush.functions with parameters of type TruthValues Modifier and Type Method Description static ScalarValuedFunction
Conversions. toBoolean(ScalarValuedFunction expr, TruthValues mapping)
Convert a string typed expression into a boolean type.static ScalarValuedFunction
Conversions. toBoolean(String field, TruthValues mapping)
Convert a string typed field into a boolean type. -
Uses of TruthValues in com.pervasive.datarush.schema
Methods in com.pervasive.datarush.schema with parameters of type TruthValues Modifier and Type Method Description static TextDataType
TextTypes. MAPPED_BOOLEAN(TruthValues mapping)
Defines an external boolean valued type using the specified mapping.static TextDataType
TextTypes. MAPPED_BOOLEAN(TruthValues mapping, String nullIndicator)
Defines an external boolean valued type using the specified mapping.
-