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