All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lowagie.text.alignment.HorizontalAlignment Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
package com.lowagie.text.alignment;

import com.lowagie.text.Element;
import java.util.Optional;

/**
 * Represents a possible horizontal alignment modes for document elements that can be aligned horizontally.
 *
 * @author noavarice
 * @see WithHorizontalAlignment
 * @since 1.2.7
 */
public enum HorizontalAlignment {

    UNDEFINED(Element.ALIGN_UNDEFINED),
    LEFT(Element.ALIGN_LEFT),
    CENTER(Element.ALIGN_CENTER),
    RIGHT(Element.ALIGN_RIGHT),
    JUSTIFIED(Element.ALIGN_JUSTIFIED),
    JUSTIFIED_ALL(Element.ALIGN_JUSTIFIED_ALL),
    ;

    private final int id;

    HorizontalAlignment(int id) {
        this.id = id;
    }

    public int getId() {
        return id;
    }

    /**
    * Constructs {@link HorizontalAlignment} instance from passed unique alignment {@code id}.
    *
    * @param id Alignment unique ID
    * @see Element#ALIGN_UNDEFINED
    * @see Element#ALIGN_LEFT
    * @see Element#ALIGN_CENTER
    * @see Element#ALIGN_RIGHT
    * @see Element#ALIGN_JUSTIFIED
    * @see Element#ALIGN_JUSTIFIED_ALL
    * @return {@link Optional} containing alignment instance. If {@code id} is not recognized,
    * {@link Optional#empty()} will be returned
    */
    public static Optional of(final int id) {
        for (final HorizontalAlignment alignment: values()) {
            if (alignment.id == id) {
                return Optional.of(alignment);
            }
        }

        return Optional.empty();
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy