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