public static enum DimensionSchema.MultiValueHandling extends Enum<DimensionSchema.MultiValueHandling>
Enum Constant and Description |
---|
ARRAY |
SORTED_ARRAY |
SORTED_SET |
Modifier and Type | Method and Description |
---|---|
static DimensionSchema.MultiValueHandling |
fromString(String name) |
boolean |
needSorting() |
static DimensionSchema.MultiValueHandling |
ofDefault() |
String |
toString() |
static DimensionSchema.MultiValueHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DimensionSchema.MultiValueHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DimensionSchema.MultiValueHandling SORTED_ARRAY
public static final DimensionSchema.MultiValueHandling SORTED_SET
public static final DimensionSchema.MultiValueHandling ARRAY
public static DimensionSchema.MultiValueHandling[] values()
for (DimensionSchema.MultiValueHandling c : DimensionSchema.MultiValueHandling.values()) System.out.println(c);
public static DimensionSchema.MultiValueHandling 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 boolean needSorting()
public String toString()
toString
in class Enum<DimensionSchema.MultiValueHandling>
public static DimensionSchema.MultiValueHandling fromString(String name)
public static DimensionSchema.MultiValueHandling ofDefault()
Copyright © 2011–2017. All rights reserved.