public static enum SitemapIcon.Condition extends Enum<SitemapIcon.Condition>
Enum Constant and Description |
---|
AND
And condition.
|
OR
Or condition
|
Modifier and Type | Method and Description |
---|---|
static SitemapIcon.Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SitemapIcon.Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SitemapIcon.Condition OR
public static final SitemapIcon.Condition AND
public static SitemapIcon.Condition[] values()
for (SitemapIcon.Condition c : SitemapIcon.Condition.values()) System.out.println(c);
public static SitemapIcon.Condition 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 null