Uses of Class
com.pervasive.datarush.encoding.text.DateTimeFormatting
-
Packages that use DateTimeFormatting 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 DateTimeFormatting in com.pervasive.datarush.encoding.text
Constructors in com.pervasive.datarush.encoding.text with parameters of type DateTimeFormatting Constructor Description DateFormatter(DateTimeFormatting format, String nullIndicator)
Creates a formatter using the specified format.DateParser(DateTimeFormatting format, String nullIndicator)
Creates a parser using the specified format.TimeFormatter(DateTimeFormatting format, String nullIndicator)
Creates a formatter using the specified format.TimeParser(DateTimeFormatting format, String nullIndicator)
Creates a parser using the specified format.TimestampFormatter(DateTimeFormatting format, String nullIndicator)
Creates a formatter using the specified format.TimestampParser(DateTimeFormatting format, String nullIndicator)
Creates a parser using the specified format. -
Uses of DateTimeFormatting in com.pervasive.datarush.functions
Methods in com.pervasive.datarush.functions with parameters of type DateTimeFormatting Modifier and Type Method Description static ScalarValuedFunction
Conversions. toDate(ScalarValuedFunction expr, DateTimeFormatting format)
Convert a string typed expression into a date type using the given format.static ScalarValuedFunction
Conversions. toDate(String field, DateTimeFormatting format)
Convert a string typed field into a date type using the given format.static ScalarValuedFunction
Conversions. toTime(ScalarValuedFunction expr, DateTimeFormatting format)
Convert a string typed expression into a time type using the given format.static ScalarValuedFunction
Conversions. toTime(String field, DateTimeFormatting format)
Convert a string typed field into a time type using the given format.static ScalarValuedFunction
Conversions. toTimestamp(ScalarValuedFunction expr, DateTimeFormatting format)
Convert a string typed expression into a timestamp type using the given format.static ScalarValuedFunction
Conversions. toTimestamp(String field, DateTimeFormatting format)
Convert a string typed field into a timestamp type using the given format. -
Uses of DateTimeFormatting in com.pervasive.datarush.schema
Methods in com.pervasive.datarush.schema with parameters of type DateTimeFormatting Modifier and Type Method Description static TextDataType
TextTypes. FORMATTED_DATE(DateTimeFormatting format)
Defines an external date valued type using an arbitraryDateFormat
.static TextDataType
TextTypes. FORMATTED_DATE(DateTimeFormatting format, String nullIndicator)
Defines an external date valued type using an arbitraryDateFormat
.static TextDataType
TextTypes. FORMATTED_TIMEOFDAY(DateTimeFormatting format)
Defines an external time valued type using an arbitrary format.static TextDataType
TextTypes. FORMATTED_TIMEOFDAY(DateTimeFormatting format, String nullIndicator)
Defines an external time valued type using an arbitrary format.static TextDataType
TextTypes. FORMATTED_TIMESTAMP(DateTimeFormatting format)
Defines an external timestamp valued type using an arbitrary format.static TextDataType
TextTypes. FORMATTED_TIMESTAMP(DateTimeFormatting format, String nullIndicator)
Defines an external timestamp valued type using an arbitrary format.
-