Uses of Class
com.pervasive.datarush.analytics.cleansing.ReplaceSpecification
-
Packages that use ReplaceSpecification Package Description com.pervasive.datarush.analytics.cleansing Provides operators related to data cleansing. -
-
Uses of ReplaceSpecification in com.pervasive.datarush.analytics.cleansing
Methods in com.pervasive.datarush.analytics.cleansing that return ReplaceSpecification Modifier and Type Method Description static ReplaceSpecification
ReplaceSpecification. constant(ScalarTokenType type, String value)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_CONSTANT
action for fields with the specified type.static ReplaceSpecification
ReplaceSpecification. constant(String fieldName, String value)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_CONSTANT
action for the specified field.static ReplaceSpecification
ReplaceSpecification. freq(ScalarTokenType type)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MOST_FREQ
action for fields with the specified type.static ReplaceSpecification
ReplaceSpecification. freq(String fieldName)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MOST_FREQ
action for the specified field.static ReplaceSpecification
ReplaceSpecification. max(ScalarTokenType type)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MAX
action for fields with the specified type.static ReplaceSpecification
ReplaceSpecification. max(String fieldName)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MAX
action for the specified field.static ReplaceSpecification
ReplaceSpecification. mean(ScalarTokenType type)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MEAN
action for fields with the specified type.static ReplaceSpecification
ReplaceSpecification. mean(String fieldName)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MEAN
action for the specified field.static ReplaceSpecification
ReplaceSpecification. median(ScalarTokenType type)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MEDIAN
action for fields with the specified type.static ReplaceSpecification
ReplaceSpecification. median(String fieldName)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MEDIAN
action for the specified field.static ReplaceSpecification
ReplaceSpecification. min(ScalarTokenType type)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MIN
action for fields with the specified type.static ReplaceSpecification
ReplaceSpecification. min(String fieldName)
Create a replacement specification with theReplaceSpecification.Action.REPLACE_MIN
action for the specified field.static ReplaceSpecification
ReplaceSpecification. none(ScalarTokenType type)
Create a replacement specification with theReplaceSpecification.Action.NONE
action for fields with the specified type.static ReplaceSpecification
ReplaceSpecification. none(String fieldName)
Create a replacement specification with theReplaceSpecification.Action.NONE
action for the specified field.static ReplaceSpecification
ReplaceSpecification. skip(ScalarTokenType type)
Create a replacement specification with theReplaceSpecification.Action.SKIP_RECORD
action for fields with the specified type.static ReplaceSpecification
ReplaceSpecification. skip(String fieldName)
Create a replacement specification with theReplaceSpecification.Action.SKIP_RECORD
action for the specified field.Methods in com.pervasive.datarush.analytics.cleansing that return types with arguments of type ReplaceSpecification Modifier and Type Method Description List<ReplaceSpecification>
ReplaceMissingValues. getReplaceSpecifications()
Gets the specifications currently configured for the operation.Method parameters in com.pervasive.datarush.analytics.cleansing with type arguments of type ReplaceSpecification Modifier and Type Method Description void
ReplaceMissingValues. setReplaceSpecifications(List<ReplaceSpecification> specifications)
Sets the replacement specifications to apply to the input data.
-