public static enum DiscoveryProcessor.DiscoveryAlgorithm extends java.lang.Enum<DiscoveryProcessor.DiscoveryAlgorithm>
Enum Constant and Description |
---|
BASIC_FALSE |
BASIC_TRUE |
OVERLAPPING_LOCAL |
OVERLAPPING_PAIRWISE |
TRUE_FALSE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static DiscoveryProcessor.DiscoveryAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DiscoveryProcessor.DiscoveryAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscoveryProcessor.DiscoveryAlgorithm BASIC_TRUE
public static final DiscoveryProcessor.DiscoveryAlgorithm TRUE_FALSE
public static final DiscoveryProcessor.DiscoveryAlgorithm OVERLAPPING_LOCAL
public static final DiscoveryProcessor.DiscoveryAlgorithm OVERLAPPING_PAIRWISE
public static final DiscoveryProcessor.DiscoveryAlgorithm BASIC_FALSE
public static DiscoveryProcessor.DiscoveryAlgorithm[] values()
for (DiscoveryProcessor.DiscoveryAlgorithm c : DiscoveryProcessor.DiscoveryAlgorithm.values()) System.out.println(c);
public static DiscoveryProcessor.DiscoveryAlgorithm valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<DiscoveryProcessor.DiscoveryAlgorithm>