public enum DistributionKind extends Enum<DistributionKind>
Enum Constant and Description |
---|
LIST_IN_DIRECTORY
Distribution by List defined in a directory.
|
LIST_IN_FILE
Distribution by List (workspace or other kind of lists)
|
LIST_IN_JSONL_FILE
Distribution by list defined in JSONL file.
|
LIST_IN_LINKED_FILE
Distribution by list defined in linked file.
|
LIST_ORDERING_IN_FILE
Distribution by List defined in a file.
|
REF
Distribution by reference, so 1 item only
|
Modifier and Type | Method and Description |
---|---|
boolean |
isDistributed()
isDistributed
|
String |
value()
value(), get the value of DistributionKind
|
static DistributionKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistributionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionKind REF
public static final DistributionKind LIST_IN_FILE
public static final DistributionKind LIST_ORDERING_IN_FILE
public static final DistributionKind LIST_IN_DIRECTORY
public static final DistributionKind LIST_IN_LINKED_FILE
public static final DistributionKind LIST_IN_JSONL_FILE
public static DistributionKind[] values()
for (DistributionKind c : DistributionKind.values()) System.out.println(c);
public static DistributionKind 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 nullpublic String value()
public boolean isDistributed()
Copyright © 2018 Vitam. All rights reserved.