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

com.englishtown.promises.HandlerState Maven / Gradle / Ivy

The newest version!
package com.englishtown.promises;

/**
 * Promise handler states
 */
public enum HandlerState {
    REJECTED(-1),
    PENDING(0),
    FULFILLED(1);

    private final int value;

    HandlerState(int value) {
        this.value = value;
    }

    public int getValue() {
        return value;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy