Enum Class SizeType

java.lang.Object
java.lang.Enum<SizeType>
org.teamapps.ux.component.format.SizeType
All Implemented Interfaces:
Serializable, Comparable<SizeType>, Constable

public enum SizeType extends Enum<SizeType>
  • Enum Constant Details

    • FIXED

      public static final SizeType FIXED
    • RELATIVE

      public static final SizeType RELATIVE
    • AUTO

      public static final SizeType AUTO
      Use the natural size of the content
    • FRACTION

      public static final SizeType FRACTION
      rest of available space, distributed by fraction values
  • Method Details

    • values

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

      public static SizeType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null