Package tripleplay.ui

Enum Class Element.Take

java.lang.Object
java.lang.Enum<Element.Take>
tripleplay.ui.Element.Take
All Implemented Interfaces:
Serializable, Comparable<Element.Take>, java.lang.constant.Constable
Enclosing class:
Element<T extends Element<T>>

public static enum Element.Take extends Enum<Element.Take>
Ways in which a preferred and an original dimension can be "taken" to produce a result. The name is supposed to be readable in context and compact, for example new SizableLayoutData(...).forWidth(Take.MAX).forHeight(Take.MIN, 200).
  • Enum Constant Details

    • MAX

      public static final Element.Take MAX
      Uses the maximum of the preferred size and original.
    • MIN

      public static final Element.Take MIN
      Uses the minimum of the preferred size and original.
    • PREFERRED_IF_SET

      public static final Element.Take PREFERRED_IF_SET
      Uses the preferred size if non-zero, otherwise the original. This is the default.
  • Method Details

    • values

      public static Element.Take[] 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 Element.Take 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
    • apply

      public abstract float apply(float preferred, float original)