Skip navigation links
org.apache.myfaces.trinidad.context
Enum RequestContext.Accessibility
java.lang.Object
java.lang.Enum<RequestContext.Accessibility>
org.apache.myfaces.trinidad.context.RequestContext.Accessibility
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<RequestContext.Accessibility>
- Enclosing class:
- RequestContext
-
public static enum RequestContext.Accessibility
- extends java.lang.Enum<RequestContext.Accessibility>
| Enum Constant Summary |
DEFAULT
Output supports accessibility features |
INACCESSIBLE
Accessibility-specific constructs are stripped out to optimize output size |
SCREEN_READER
Accessibility-specific constructs are added to improve behavior under a screen reader (but may affect other users negatively) |
| 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 |
DEFAULT
public static final RequestContext.Accessibility DEFAULT
- Output supports accessibility features
INACCESSIBLE
public static final RequestContext.Accessibility INACCESSIBLE
- Accessibility-specific constructs are stripped out to optimize output size
SCREEN_READER
public static final RequestContext.Accessibility SCREEN_READER
- Accessibility-specific constructs are added to improve behavior under a screen reader (but may affect other users negatively)
values
public static RequestContext.Accessibility[] 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 (RequestContext.Accessibility c : RequestContext.Accessibility.values())
System.out.println(c);
-
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static RequestContext.Accessibility 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
toString
public java.lang.String toString()
-
- Overrides:
toString in class java.lang.Enum<RequestContext.Accessibility>
Skip navigation links
Copyright © 2001-2012 The Apache Software Foundation. All Rights Reserved.