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

com.digi.xbee.api.models.APIOutputMode Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
/**
 * Copyright 2017, Digi International Inc.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, you can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */
package com.digi.xbee.api.models;

import java.util.HashMap;

import com.digi.xbee.api.utils.HexUtils;

/**
 * Enumerates the different API output modes. The API output mode establishes 
 * the way data will be output through the serial interface of an XBee device.
 */
public enum APIOutputMode {

	// Enumeration entries
	MODE_NATIVE(0x00, "Native"),
	MODE_EXPLICIT(0x01, "Explicit"),
	MODE_EXPLICIT_ZDO_PASSTHRU(0x03, "Explicit with ZDO Passthru");
	
	// Variables
	private final int value;
	
	private final String description;
	
	private final static HashMap lookupTable = new HashMap();
	
	static {
		for (APIOutputMode apiOutputMode:values())
			lookupTable.put(apiOutputMode.getValue(), apiOutputMode);
	}
	
	/**
	 * Class constructor. Instantiates a new {@code APIOutputMode} enumeration
	 * entry with the given parameters.
	 * 
	 * @param value API output mode value 
	 * @param description API output mode description.
	 */
	private APIOutputMode(int value, String description) {
		this.value = value;
		this.description = description;
	}
	
	/**
	 * Returns the API output mode value.
	 * 
	 * @return The API output mode value.
	 */
	public int getValue() {
		return value;
	}
	
	/**
	 * Returns the API output mode description.
	 * 
	 * @return The API output mode description.
	 */
	public String getDescription() {
		return description;
	}
	
	/**
	 * Returns the {@code APIOutputMode} entry associated to the given value.
	 * 
	 * @param value Value of the {@code APIOutputMode} to retrieve.
	 * 
	 * @return The {@code APIOutputMode} entry associated to the given value, 
	 *         {@code null} if the value could not be found in the 
	 *         list.
	 */
	public static APIOutputMode get(int value) {
		APIOutputMode apiOutputMode = lookupTable.get(value);
		if (apiOutputMode != null)
			return apiOutputMode;
		return null;
	}
	
	/*
	 * (non-Javadoc)
	 * @see java.lang.Enum#toString()
	 */
	@Override
	public String toString() {
		return HexUtils.byteToHexString((byte)value) + ": " + description;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy