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