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

gurux.dlms.internal.CoAPSignaling Maven / Gradle / Ivy

There is a newer version: 4.0.68
Show newest version
package gurux.dlms.internal;

/**
 * CoAP Signaling .
 */
public enum CoAPSignaling {
    /**
     * Unassigned.
     */
    UNASSIGNED,
    /**
     * CSM.
     */
    CSM,
    /**
     * Ping.
     */
    PING,
    /**
     * Pong.
     */
    PONG,
    /**
     * Release.
     */
    RELEASE,
    /**
     * Forbidden.
     */
    ABORT;

    /**
     * @return Enumerated value as integer.
     */
    public int getValue() {
        return this.ordinal();
    }

    /**
     * Convert integer value to enumerated value.
     * 
     * @param value
     *            Integer value.
     * @return Enumerated value.
     */
    public static CoAPSignaling forValue(int value) {
        return values()[value];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy