public enum ByteKMeansInitialisers extends Enum<ByteKMeansInitialisers> implements CmdLineOptionsProvider
Modifier and Type | Class and Description |
---|---|
class |
ByteKMeansInitialisers.Options
Base options for FastByteKMeansInitialisers types
|
Enum Constant and Description |
---|
RANDOM
Randomly sampled points to start
|
RANDOMSETCLUSTER
Start from provided centroids
|
Modifier and Type | Method and Description |
---|---|
abstract ByteKMeansInitialisers.Options |
getOptions() |
static ByteKMeansInitialisers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ByteKMeansInitialisers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ByteKMeansInitialisers RANDOM
public static final ByteKMeansInitialisers RANDOMSETCLUSTER
public static ByteKMeansInitialisers[] values()
for (ByteKMeansInitialisers c : ByteKMeansInitialisers.values()) System.out.println(c);
public static ByteKMeansInitialisers 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 abstract ByteKMeansInitialisers.Options getOptions()
getOptions
in interface CmdLineOptionsProvider