javax.faces.component.html
Enum HtmlCommandButton.PropertyKeys

java.lang.Object
  extended by java.lang.Enum<HtmlCommandButton.PropertyKeys>
      extended by javax.faces.component.html.HtmlCommandButton.PropertyKeys
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HtmlCommandButton.PropertyKeys>
Enclosing class:
HtmlCommandButton

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


Enum Constant Summary
accesskey
           
alt
           
dir
           
disabled
           
image
           
label
           
lang
           
onblur
           
onchange
           
onclick
           
ondblclick
           
onfocus
           
onkeydown
           
onkeypress
           
onkeyup
           
onmousedown
           
onmousemove
           
onmouseout
           
onmouseover
           
onmouseup
           
onselect
           
readonly
           
style
           
styleClass
           
tabindex
           
title
           
type
           
 
Method Summary
static HtmlCommandButton.PropertyKeys valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HtmlCommandButton.PropertyKeys[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

image

public static final HtmlCommandButton.PropertyKeys image

type

public static final HtmlCommandButton.PropertyKeys type

label

public static final HtmlCommandButton.PropertyKeys label

onchange

public static final HtmlCommandButton.PropertyKeys onchange

onselect

public static final HtmlCommandButton.PropertyKeys onselect

disabled

public static final HtmlCommandButton.PropertyKeys disabled

readonly

public static final HtmlCommandButton.PropertyKeys readonly

alt

public static final HtmlCommandButton.PropertyKeys alt

style

public static final HtmlCommandButton.PropertyKeys style

styleClass

public static final HtmlCommandButton.PropertyKeys styleClass

accesskey

public static final HtmlCommandButton.PropertyKeys accesskey

tabindex

public static final HtmlCommandButton.PropertyKeys tabindex

dir

public static final HtmlCommandButton.PropertyKeys dir

lang

public static final HtmlCommandButton.PropertyKeys lang

title

public static final HtmlCommandButton.PropertyKeys title

onclick

public static final HtmlCommandButton.PropertyKeys onclick

ondblclick

public static final HtmlCommandButton.PropertyKeys ondblclick

onkeydown

public static final HtmlCommandButton.PropertyKeys onkeydown

onkeypress

public static final HtmlCommandButton.PropertyKeys onkeypress

onkeyup

public static final HtmlCommandButton.PropertyKeys onkeyup

onmousedown

public static final HtmlCommandButton.PropertyKeys onmousedown

onmousemove

public static final HtmlCommandButton.PropertyKeys onmousemove

onmouseout

public static final HtmlCommandButton.PropertyKeys onmouseout

onmouseover

public static final HtmlCommandButton.PropertyKeys onmouseover

onmouseup

public static final HtmlCommandButton.PropertyKeys onmouseup

onblur

public static final HtmlCommandButton.PropertyKeys onblur

onfocus

public static final HtmlCommandButton.PropertyKeys onfocus
Method Detail

values

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

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

valueOf

public static HtmlCommandButton.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


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