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

net.n2oapp.framework.config.metadata.compile.IndexScope Maven / Gradle / Ivy

There is a newer version: 7.28.2
Show newest version
package net.n2oapp.framework.config.metadata.compile;

import java.util.concurrent.atomic.AtomicInteger;

/**
 * Генератор индекса для уникальной идентификации метаданных
 */
public class IndexScope {
    private AtomicInteger index;
    private boolean first = true;

    /**
     * Конструктор индекса со стартовым значением
     *
     * @param start Стартовое значение
     */
    public IndexScope(int start) {
        this.index = new AtomicInteger(start);
    }

    /**
     * Конструктор индекса со стартовым значением по умолчанию
     */
    public IndexScope() {
        index = new AtomicInteger(0);
    }

    /**
     * Получить текущий индекс и увеличить на 1 для следующих
     */
    public int get() {
        this.first = false;
        return index.getAndIncrement();
    }

    /**
     * Были ли уже вызовы {@link #get()} ?
     *
     * @return true не были, false были
     */
    public boolean isFirst() {
        return first;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy