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

com.mobius.software.mqttsn.parser.avps.Flag Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.mobius.software.mqttsn.parser.avps;

import java.util.HashMap;
import java.util.Map;

import com.mobius.software.mqttsn.parser.exceptions.MalformedMessageException;

public enum Flag
{
	DUPLICATE(128), QOS_LEVEL_ONE(96), QOS_2(64), QOS_1(32), RETAIN(16), WILL(8), CLEAN_SESSION(4), RESERVED_TOPIC(3), SHORT_TOPIC(2), ID_TOPIC(1);

	private static final Map intToTypeMap = new HashMap();
	private static final Map strToTypeMap = new HashMap();

	static
	{
		for (Flag flags : Flag.values())
		{
			intToTypeMap.put((int) flags.value, flags);
			strToTypeMap.put(flags.name(), flags);
		}
	}

	private int value;

	Flag(final int value)
	{
		this.value = value;
	}

	public int getValue()
	{
		return value;
	}

	public static Flag valueOf(int type) throws MalformedMessageException
	{
		return intToTypeMap.get(type);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy