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