org.primefaces.component.socket
Enum Socket.PropertyKeys

java.lang.Object
  extended by java.lang.Enum<Socket.PropertyKeys>
      extended by org.primefaces.component.socket.Socket.PropertyKeys
All Implemented Interfaces:
Serializable, Comparable<Socket.PropertyKeys>
Enclosing class:
Socket

protected static enum Socket.PropertyKeys
extends Enum<Socket.PropertyKeys>


Enum Constant Summary
autoConnect
           
channel
           
fallbackTransport
           
onClose
           
onError
           
onLocalMessage
           
onMessage
           
onMessagePublished
           
onOpen
           
onReconnect
           
onTransportFailure
           
transport
           
widgetVar
           
 
Method Summary
 String toString()
           
static Socket.PropertyKeys valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Socket.PropertyKeys[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

widgetVar

public static final Socket.PropertyKeys widgetVar

channel

public static final Socket.PropertyKeys channel

transport

public static final Socket.PropertyKeys transport

fallbackTransport

public static final Socket.PropertyKeys fallbackTransport

onMessage

public static final Socket.PropertyKeys onMessage

onError

public static final Socket.PropertyKeys onError

onClose

public static final Socket.PropertyKeys onClose

onOpen

public static final Socket.PropertyKeys onOpen

onReconnect

public static final Socket.PropertyKeys onReconnect

onMessagePublished

public static final Socket.PropertyKeys onMessagePublished

onTransportFailure

public static final Socket.PropertyKeys onTransportFailure

onLocalMessage

public static final Socket.PropertyKeys onLocalMessage

autoConnect

public static final Socket.PropertyKeys autoConnect
Method Detail

values

public static Socket.PropertyKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Socket.PropertyKeys c : Socket.PropertyKeys.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Socket.PropertyKeys valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<Socket.PropertyKeys>


Copyright © 2013. All rights reserved.