public enum EcosystemHintNature extends 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(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(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 © 2012–2021 OWASP. All rights reserved.