Enum Class Width

java.lang.Object
java.lang.Enum<Width>
com.persequor.extension.frontend.Width
All Implemented Interfaces:
Serializable, Comparable<Width>, Constable

public enum Width extends Enum<Width>
The width is based on a twelve column grid, the value determines the number of columns it will use.
  • Enum Constant Details

    • auto

      public static final Width auto
    • full

      public static final Width full
    • half

      public static final Width half
    • quarter

      public static final Width quarter
    • third

      public static final Width third
    • twoThirds

      public static final Width twoThirds
    • sixth

      public static final Width sixth
    • twelfth

      public static final Width twelfth
    • oneTwelfth

      public static final Width oneTwelfth
    • twoTwelfth

      public static final Width twoTwelfth
    • threeTwelfth

      public static final Width threeTwelfth
    • fourTwelfth

      public static final Width fourTwelfth
    • fiveTwelfth

      public static final Width fiveTwelfth
    • sixTwelfth

      public static final Width sixTwelfth
    • sevenTwelfth

      public static final Width sevenTwelfth
    • eightTwelfth

      public static final Width eightTwelfth
    • nineTwelfth

      public static final Width nineTwelfth
    • tenTwelfth

      public static final Width tenTwelfth
    • elevenTwelfth

      public static final Width elevenTwelfth
  • Method Details

    • values

      public static Width[] 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 Width 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