Enum HorizontalAlignment

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<HorizontalAlignment>

    public enum HorizontalAlignment
    extends java.lang.Enum<HorizontalAlignment>
    Enumerates the available values for horizontal alignment.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CENTER
      If the preferred width is less than the available width, the relevant content is horizontally centered in its container.
      FILL
      The content is placed to fill all available width from its container.
      LEADING
      If the preferred width is less than the available width, the relevant content is placed at the leading position in its container (left for LTR and right for RTL).
      TRAILING
      If the preferred width is less than the available width, the relevant content is placed at the trailing position in its container (right for LTR and left for RTL).
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private HorizontalAlignment()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static HorizontalAlignment valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static HorizontalAlignment[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • LEADING

        public static final HorizontalAlignment LEADING
        If the preferred width is less than the available width, the relevant content is placed at the leading position in its container (left for LTR and right for RTL).
      • CENTER

        public static final HorizontalAlignment CENTER
        If the preferred width is less than the available width, the relevant content is horizontally centered in its container.
      • TRAILING

        public static final HorizontalAlignment TRAILING
        If the preferred width is less than the available width, the relevant content is placed at the trailing position in its container (right for LTR and left for RTL).
      • FILL

        public static final HorizontalAlignment FILL
        The content is placed to fill all available width from its container.
    • Constructor Detail

      • HorizontalAlignment

        private HorizontalAlignment()
    • Method Detail

      • values

        public static HorizontalAlignment[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (HorizontalAlignment c : HorizontalAlignment.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static HorizontalAlignment valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null