public class SwitchTransformer extends java.lang.Object implements Transformer, java.io.Serializable
Constructor and Description |
---|
SwitchTransformer(Predicate[] predicates,
Transformer[] transformers,
Transformer defaultTransformer)
Constructor that performs no validation.
|
Modifier and Type | Method and Description |
---|---|
Transformer |
getDefaultTransformer()
Gets the default transformer.
|
static Transformer |
getInstance(java.util.Map predicatesAndTransformers)
Create a new Transformer that calls one of the transformers depending
on the predicates.
|
static Transformer |
getInstance(Predicate[] predicates,
Transformer[] transformers,
Transformer defaultTransformer)
Factory method that performs validation and copies the parameter arrays.
|
Predicate[] |
getPredicates()
Gets the predicates, do not modify the array.
|
Transformer[] |
getTransformers()
Gets the transformers, do not modify the array.
|
java.lang.Object |
transform(java.lang.Object input)
Transforms the input to result by calling the transformer whose matching
predicate returns true.
|
public SwitchTransformer(Predicate[] predicates, Transformer[] transformers, Transformer defaultTransformer)
getInstance
if you want that.predicates
- array of predicates, not cloned, no nullstransformers
- matching array of transformers, not cloned, no nullsdefaultTransformer
- the transformer to use if no match, null means return nullpublic static Transformer getInstance(Predicate[] predicates, Transformer[] transformers, Transformer defaultTransformer)
predicates
- array of predicates, cloned, no nullstransformers
- matching array of transformers, cloned, no nullsdefaultTransformer
- the transformer to use if no match, null means return nullchained
transformerjava.lang.IllegalArgumentException
- if array is nulljava.lang.IllegalArgumentException
- if any element in the array is nullpublic static Transformer getInstance(java.util.Map predicatesAndTransformers)
The Map consists of Predicate keys and Transformer values. A transformer is called if its matching predicate returns true. Each predicate is evaluated until one returns true. If no predicates evaluate to true, the default transformer is called. The default transformer is set in the map with a null key. The ordering is that of the iterator() method on the entryset collection of the map.
predicatesAndTransformers
- a map of predicates to transformersswitch
transformerjava.lang.IllegalArgumentException
- if the map is nulljava.lang.IllegalArgumentException
- if any transformer in the map is nulljava.lang.ClassCastException
- if the map elements are of the wrong typepublic java.lang.Object transform(java.lang.Object input)
transform
in interface Transformer
input
- the input object to transformpublic Predicate[] getPredicates()
public Transformer[] getTransformers()
public Transformer getDefaultTransformer()
Copyright © 2010 - 2020 Adobe. All Rights Reserved