Uses of Interface
org.supercsv.cellprocessor.ift.BoolCellProcessor

Packages that use BoolCellProcessor
Package
Description
Provides CellProcessor classes for conversion, formatting and parsing.
Provides CellProcessor classes for enforcing constraints.
  • Uses of BoolCellProcessor in org.supercsv.cellprocessor

    Modifier and Type
    Class
    Description
    private static final class 
    This is an implementation-specific processor and should only be used by the CellProcessorAdaptor class.
    class 
    This processor collects each value it encounters and adds it to the supplied Collection.
    class 
    This processor returns a specified default value if the input is null.
    class 
    Converts a Boolean into a formatted string.
    class 
    Maps from one object to another, by looking up a Map with the input as the key, and returning its corresponding value.
    class 
    This processor is used to indicate that a cell is optional, and will avoid executing further processors if it encounters null.
    class 
    Replaces each substring of the input string that matches the given regular expression with the given replacement.
    class 
    This processor is used in the situations you want to be able to check for the presence of a "special token".
    class 
    Ensure that Strings or String-representations of objects are trimmed (contain no surrounding whitespace).
    class 
    Ensure that Strings or String-representations of objects are truncated to a maximum size.
    Constructors in org.supercsv.cellprocessor with parameters of type BoolCellProcessor
    Modifier
    Constructor
    Description
     
    ParseBool(boolean ignoreCase, BoolCellProcessor next)
    Constructs a new ParseBool processor, which converts a String to a Boolean using the default values (ignoring case if desired), then calls the next processor in the chain.
     
    ParseBool(String[] trueValues, String[] falseValues, boolean ignoreCase, BoolCellProcessor next)
    Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false values (ignoring case if desired), then calls the next processor in the chain.
     
    ParseBool(String[] trueValues, String[] falseValues, BoolCellProcessor next)
    Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false values (ignoring case), then calls the next processor in the chain.
     
    ParseBool(String trueValue, String falseValue, boolean ignoreCase, BoolCellProcessor next)
    Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false values (ignoring case if desired), then calls the next processor in the chain.
     
    ParseBool(String trueValue, String falseValue, BoolCellProcessor next)
    Constructs a new ParseBool processor, which converts a String to a Boolean using the supplied true/false values (ignoring case), then calls the next processor in the chain.
     
    Constructs a new ParseBool processor, which converts a String to a Boolean using the default values (ignoring case), then calls the next processor in the chain.
  • Uses of BoolCellProcessor in org.supercsv.cellprocessor.constraint

    Modifier and Type
    Class
    Description
    class 
    This constraint ensures that all input data is equal (to each other, or to a supplied constant value).
    class 
    This processor ensures that the input value is an element of a Collection.
    class 
    This processor ensures that the input value belongs to a specific set of (unchangeable) values.
    class 
    This processor ensures that the input is not null.
    class 
    This processor converts the input to a String, and ensures that the input's hash function matches any of a given set of hashcodes.