public enum EcosystemHintNature extends java.lang.Enum<EcosystemHintNature>
| Enum Constant and Description |
|---|
FILE_EXTENSION
Hint is from the file extension.
|
KEYWORD
Hint is from a keyword.
|
URL_HOST
Hint is from the host in a URL.
|
URL_PATH
Hint is from the URL path.
|
| Modifier and Type | Method and Description |
|---|---|
static EcosystemHintNature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EcosystemHintNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EcosystemHintNature FILE_EXTENSION
public static final EcosystemHintNature KEYWORD
public static final EcosystemHintNature URL_HOST
public static final EcosystemHintNature URL_PATH
public static EcosystemHintNature[] values()
for (EcosystemHintNature c : EcosystemHintNature.values()) System.out.println(c);
public static EcosystemHintNature valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright© 2012-21 Jeremy Long. All Rights Reserved.