public static final enum

ContactQuery.OrderBy

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.gdata.client.contacts.ContactQuery.OrderBy

Class Overview

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

Summary

Enum Values
ContactQuery.OrderBy  EDITED  Order the returned feed's entries by their <app:edited> values. 
ContactQuery.OrderBy  LAST_MODIFIED  Order the returned feed's entries by their <updated> values. 
ContactQuery.OrderBy  NONE  None. 
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 ContactQuery.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 ContactQuery.OrderBy EDITED

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

public static final ContactQuery.OrderBy LAST_MODIFIED

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

public static final ContactQuery.OrderBy NONE

None.

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 ContactQuery.OrderBy valueOf (String name)

Parameters
name

public static final OrderBy[] values ()