Enum EnumRail

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<EnumRail>

    public enum EnumRail
    extends java.lang.Enum<EnumRail>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CONTENT_ONLY
      Content Only option in the Rail CycleButton popover.
      CONTENT_TREE
      Content Tree option in the Rail CycleButton popover.
      FILTER
      Filter option in the Rail CycleButton popover.
      REFERENCES
      References option in the Rail CycleButton popover.
      TIMELINE
      Timeline option in the Rail CycleButton popover.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getI18nTitle()  
      java.lang.String getPanelName()  
      static EnumRail valueOf​(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.
      • 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

      • 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 name
        java.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.