Enum AsideFloat

java.lang.Object
java.lang.Enum<AsideFloat>
org.apache.juneau.html.AsideFloat
All Implemented Interfaces:
Serializable, Comparable<AsideFloat>, java.lang.constant.Constable

public enum AsideFloat extends Enum<AsideFloat>
Identifies possible float values for HtmlDocSerializer.Builder.asideFloat(AsideFloat).
See Also:
  • Enum Constant Details

  • Method Details

    • values

      public static AsideFloat[] 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 AsideFloat valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • is

      public boolean is(AsideFloat value)
      Returns true if value matches this enum.
      Parameters:
      value - The value to check against.
      Returns:
      true if value matches this enum.
    • isAny

      public boolean isAny(AsideFloat... values)
      Returns true if any of the values match this enum.
      Parameters:
      values - The values to check against.
      Returns:
      true if value matches this enum.