org.apache.myfaces.custom.document
Enum DocumentBody.PropertyKeys

java.lang.Object
  extended by java.lang.Enum<DocumentBody.PropertyKeys>
      extended by org.apache.myfaces.custom.document.DocumentBody.PropertyKeys
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DocumentBody.PropertyKeys>
Enclosing class:
DocumentBody

protected static enum DocumentBody.PropertyKeys
extends java.lang.Enum<DocumentBody.PropertyKeys>


Enum Constant Summary
dir
           
lang
           
onclick
           
ondblclick
           
onkeydown
           
onkeypress
           
onkeyup
           
onload
           
onmousedown
           
onmousemove
           
onmouseout
           
onmouseover
           
onmouseup
           
onresize
           
onunload
           
style
           
styleClass
           
title
           
 
Method Summary
static DocumentBody.PropertyKeys valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DocumentBody.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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

onload

public static final DocumentBody.PropertyKeys onload

onunload

public static final DocumentBody.PropertyKeys onunload

onresize

public static final DocumentBody.PropertyKeys onresize

onclick

public static final DocumentBody.PropertyKeys onclick

ondblclick

public static final DocumentBody.PropertyKeys ondblclick

onkeydown

public static final DocumentBody.PropertyKeys onkeydown

onkeypress

public static final DocumentBody.PropertyKeys onkeypress

onkeyup

public static final DocumentBody.PropertyKeys onkeyup

onmousedown

public static final DocumentBody.PropertyKeys onmousedown

onmousemove

public static final DocumentBody.PropertyKeys onmousemove

onmouseout

public static final DocumentBody.PropertyKeys onmouseout

onmouseover

public static final DocumentBody.PropertyKeys onmouseover

onmouseup

public static final DocumentBody.PropertyKeys onmouseup

dir

public static final DocumentBody.PropertyKeys dir

lang

public static final DocumentBody.PropertyKeys lang

title

public static final DocumentBody.PropertyKeys title

style

public static final DocumentBody.PropertyKeys style

styleClass

public static final DocumentBody.PropertyKeys styleClass
Method Detail

values

public static DocumentBody.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 (DocumentBody.PropertyKeys c : DocumentBody.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 DocumentBody.PropertyKeys valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2011 The Apache Software Foundation. All Rights Reserved.