public static enum StringUtils.SIMILARITY_STRATS extends Enum<StringUtils.SIMILARITY_STRATS>
Enum Constant and Description |
---|
DICE |
Modifier and Type | Method and Description |
---|---|
static StringUtils.SIMILARITY_STRATS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringUtils.SIMILARITY_STRATS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringUtils.SIMILARITY_STRATS DICE
public static StringUtils.SIMILARITY_STRATS[] values()
for (StringUtils.SIMILARITY_STRATS c : StringUtils.SIMILARITY_STRATS.values()) System.out.println(c);
public static StringUtils.SIMILARITY_STRATS 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 © 2001-2014 JBoss by Red Hat. All Rights Reserved.