Enum ChatMenu.HeightControl

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ChatMenu.HeightControl>, java.lang.constant.Constable
    Enclosing class:
    ChatMenu

    public static enum ChatMenu.HeightControl
    extends java.lang.Enum<ChatMenu.HeightControl>
    The enum Height control.
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.lang.Enum

        java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      AUTO
      No auto fill at all
      AUTO_CENTER
      No inner filling, fill top and bottom till max height
      AUTO_EXTERNAL
      No inner filling, fill top till max height
      MANUAL
      Fills inner to set height
      MANUAL_CENTER
      Fills inner till set height, fill top and bottom till max height
      MANUAL_EXTERNAL
      Fills inner till set height, fill top till max height
      MAX
      Inner fills top to max height
    • Method Summary

      Modifier and Type Method Description
      boolean isAuto()  
      boolean isFillingInner()  
      boolean isFillingTop()  
      boolean isFillingTopAndBottom()  
      boolean isManual()  
      boolean isNotFilling()  
      static ChatMenu.HeightControl valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ChatMenu.HeightControl[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static ChatMenu.HeightControl[] values()
        Returns an array containing the constants of this enum type, in the order they are declared.
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ChatMenu.HeightControl 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
      • isFillingTop

        public boolean isFillingTop()
      • isFillingTopAndBottom

        public boolean isFillingTopAndBottom()
      • isFillingInner

        public boolean isFillingInner()
      • isNotFilling

        public boolean isNotFilling()
      • isAuto

        public boolean isAuto()
      • isManual

        public boolean isManual()