public static final enum

IdMessage.Strength

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.gwt.requestfactory.shared.messages.IdMessage.Strength

Class Overview

Describes the longevity of the id.

Summary

Enum Values
IdMessage.Strength  EPHEMERAL  The id is managed by the client and is generally unknown to the server. 
IdMessage.Strength  PERSISTED  The id is indefinitely persistent and can be freely reused by the client and the server. 
IdMessage.Strength  SYNTHETIC  The id not not managed by the client or server and is valid only for the duration of a single request or response. 
Public Methods
static IdMessage.Strength valueOf(String name)
final static Strength[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final IdMessage.Strength EPHEMERAL

The id is managed by the client and is generally unknown to the server.

public static final IdMessage.Strength PERSISTED

The id is indefinitely persistent and can be freely reused by the client and the server.

public static final IdMessage.Strength SYNTHETIC

The id not not managed by the client or server and is valid only for the duration of a single request or response.

Public Methods

public static IdMessage.Strength valueOf (String name)

public static final Strength[] values ()