java.lang.Object
java.lang.Enum<Layout>
org.tquadrat.foundation.javacomposer.Layout
All Implemented Interfaces:
Serializable, Comparable<Layout>, Constable, LayoutWriter

@ClassVersion(sourceVersion="$Id: Layout.java 855 2021-01-21 20:22:52Z tquadrat $") @API(status=STABLE, since="0.0.5") public enum Layout extends Enum<Layout> implements LayoutWriter
The various possible layouts for the output created by JavaFile.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Layout.java 855 2021-01-21 20:22:52Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.javacomposer.Layout"

UML Diagram for "org.tquadrat.foundation.javacomposer.Layout"

UML Diagram for "org.tquadrat.foundation.javacomposer.Layout"
  • Enum Constant Details

  • Field Details

  • Constructor Details

    • Layout

      private Layout(boolean useTab, int tabSize)
      Creates a new instance for Layout.
      Parameters:
      useTab - true if the tabulator should be used for the indentation, false if blanks should be used.
      tabSize - The tabulator size.
  • Method Details

    • values

      public static Layout[] 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 Layout 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
    • indent

      public final String indent()
      Returns the indentation String for this layout.
      Specified by:
      indent in interface LayoutWriter
      Returns:
      The indentation.
    • tabsize

      public final int tabsize()
      Returns the tabulator size this layout was configured with.
      Specified by:
      tabsize in interface LayoutWriter
      Returns:
      The tabulator size.