public static final enum

BlogPostQuery.OrderBy

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.gdata.client.blogger.BlogPostQuery.OrderBy

Class Overview

Order of entries in a feed. Default value is PUBLISHED.

Summary

Enum Values
BlogPostQuery.OrderBy  EDITED  Order the returned feed's entries by their <app:edited> values. 
BlogPostQuery.OrderBy  PUBLISHED  Order the returned feed's entries by their <published> values. 
BlogPostQuery.OrderBy  UPDATED  Order the returned feed's entries by their <updated> values. 
Fields
private final String value
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
String toValue()
Returns the value used in the URL.
static BlogPostQuery.OrderBy valueOf(String name)
final static OrderBy[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final BlogPostQuery.OrderBy EDITED

Order the returned feed's entries by their <app:edited> values.

public static final BlogPostQuery.OrderBy PUBLISHED

Order the returned feed's entries by their <published> values.

public static final BlogPostQuery.OrderBy UPDATED

Order the returned feed's entries by their <updated> values.

Fields

private final String value

Public Methods

public String toValue ()

Returns the value used in the URL.

Returns
  • value used in the URL.

public static BlogPostQuery.OrderBy valueOf (String name)

Parameters
name

public static final OrderBy[] values ()