public enum TagOrderBy extends Enum<TagOrderBy>
Enum Constant and Description |
---|
count |
description |
id |
include |
name |
slug |
term_group |
Modifier and Type | Method and Description |
---|---|
static TagOrderBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagOrderBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagOrderBy id
public static final TagOrderBy include
public static final TagOrderBy name
public static final TagOrderBy slug
public static final TagOrderBy term_group
public static final TagOrderBy description
public static final TagOrderBy count
public static TagOrderBy[] values()
for (TagOrderBy c : TagOrderBy.values()) System.out.println(c);
public static TagOrderBy 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 nullApache Camel