Enum Markers

    • Enum Constant Detail

      • ALIGN_LEFT_MARKER

        public static final Markers ALIGN_LEFT_MARKER
        Constant to represent left alignment marker
      • ALIGN_LEFTNONL_MARKER

        public static final Markers ALIGN_LEFTNONL_MARKER
        Constant to represent left alignment marker, without new line
      • ALIGN_CENTER_MARKER

        public static final Markers ALIGN_CENTER_MARKER
        Constant to represent centered alignment marker
      • ALIGN_RIGHT_MARKER

        public static final Markers ALIGN_RIGHT_MARKER
        Constant to represent right alignment marker
      • ALIGN_JUSTIFIED_MARKER

        public static final Markers ALIGN_JUSTIFIED_MARKER
        Constant to represent justified alignment marker
      • GLUE_MARKER

        public static final Markers GLUE_MARKER
        Constant to represent "glue" marker
      • VERTICAL_SPACING_MARKER

        public static final Markers VERTICAL_SPACING_MARKER
        Constant to represent vertical spacing marker
      • NO_JUSTIFICATION_MARKER

        public static final Markers NO_JUSTIFICATION_MARKER
        Constant to represent no justification markers
    • Field Detail

    • Method Detail

      • values

        public static Markers[] 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 (Markers c : Markers.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Markers 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
      • check

        boolean check​(String mark)