public enum JIPipeParameterPersistence extends Enum<JIPipeParameterPersistence>
Enum Constant and Description |
---|
Collection
The parameter is serialized as collection, meaning that sub-parameters are
exploded.
|
NestedCollection
The parameter is serialized into an object instead of exploded into the root object.
|
None
The parameter is not serialized
|
Modifier and Type | Method and Description |
---|---|
static JIPipeParameterPersistence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JIPipeParameterPersistence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JIPipeParameterPersistence Collection
JIPipeParameterCollection
objects.
This is the default and most robust method, as the minimal amount of information is lost on API changes.public static final JIPipeParameterPersistence NestedCollection
JsonDeserializable
.
This is less robust than the Collection method.public static final JIPipeParameterPersistence None
public static JIPipeParameterPersistence[] values()
for (JIPipeParameterPersistence c : JIPipeParameterPersistence.values()) System.out.println(c);
public static JIPipeParameterPersistence 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 © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.