Enum EnumRail
- java.lang.Object
-
- java.lang.Enum<EnumRail>
-
- com.adobe.cq.testing.selenium.pagewidgets.cq.EnumRail
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTENT_ONLYContent Only option in the Rail CycleButton popover.CONTENT_TREEContent Tree option in the Rail CycleButton popover.FILTERFilter option in the Rail CycleButton popover.REFERENCESReferences option in the Rail CycleButton popover.TIMELINETimeline option in the Rail CycleButton popover.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetI18nTitle()java.lang.StringgetPanelName()static EnumRailvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EnumRail[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TIMELINE
public static final EnumRail TIMELINE
Timeline option in the Rail CycleButton popover.
-
CONTENT_ONLY
public static final EnumRail CONTENT_ONLY
Content Only option in the Rail CycleButton popover.
-
CONTENT_TREE
public static final EnumRail CONTENT_TREE
Content Tree option in the Rail CycleButton popover.
-
REFERENCES
public static final EnumRail REFERENCES
References option in the Rail CycleButton popover.
-
FILTER
public static final EnumRail FILTER
Filter option in the Rail CycleButton popover.
-
-
Method Detail
-
values
public static EnumRail[] 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 (EnumRail c : EnumRail.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumRail 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 namejava.lang.NullPointerException- if the argument is null
-
getPanelName
public java.lang.String getPanelName()
- Returns:
- the associated panel name for this rail cycle button item.
-
getI18nTitle
public java.lang.String getI18nTitle()
- Returns:
- the i18n title to be converted / localized.
-
-