public static enum StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy extends Enum<StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy>
Enum Constant and Description |
---|
STOP_ON_FIRST_INCLUDED
Skip first null entries.
|
TRANSFORM_ALL
Transform all entries.
|
Modifier and Type | Method and Description |
---|---|
static StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy TRANSFORM_ALL
public static final StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy STOP_ON_FIRST_INCLUDED
While traversing collection entries, as optimisation, stops transforming if encounters first non-null included entry and returns it plus the rest untouched.
public static StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy[] values()
for (StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy c : StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy.values()) System.out.println(c);
public static StateSnapshotTransformer.CollectionStateSnapshotTransformer.TransformStrategy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014–2024 The Apache Software Foundation. All rights reserved.