public static enum SerializerDeserializer.SketchType extends Enum<SerializerDeserializer.SketchType>
| Enum Constant and Description |
|---|
ArrayOfDoublesCompactSketch |
ArrayOfDoublesQuickSelectSketch |
ArrayOfDoublesUnion |
CompactSketch |
QuickSelectSketch |
| Modifier and Type | Method and Description |
|---|---|
static SerializerDeserializer.SketchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SerializerDeserializer.SketchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerializerDeserializer.SketchType QuickSelectSketch
public static final SerializerDeserializer.SketchType CompactSketch
public static final SerializerDeserializer.SketchType ArrayOfDoublesQuickSelectSketch
public static final SerializerDeserializer.SketchType ArrayOfDoublesCompactSketch
public static final SerializerDeserializer.SketchType ArrayOfDoublesUnion
public static SerializerDeserializer.SketchType[] values()
for (SerializerDeserializer.SketchType c : SerializerDeserializer.SketchType.values()) System.out.println(c);
public static SerializerDeserializer.SketchType 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 © 2015–2024 The Apache Software Foundation. All rights reserved.