001/*
002 * Copyright (C) Cross The Road Electronics.  All rights reserved.
003 * License information can be found in CTRE_LICENSE.txt
004 * For support and suggestions contact support@ctr-electronics.com or file
005 * an issue tracker at https://github.com/CrossTheRoadElec/Phoenix-Releases
006 */
007package com.ctre.phoenix6.signals;
008
009import java.util.HashMap;
010
011/**
012 * Determines if the reverse limit switch is normally-open (default) or
013 * normally-closed.
014 */
015public enum ReverseLimitTypeValue
016{
017    NormallyOpen(0),
018    NormallyClosed(1),;
019
020    public final int value;
021
022    ReverseLimitTypeValue(int initValue)
023    {
024        this.value = initValue;
025    }
026
027    private static HashMap<Integer, ReverseLimitTypeValue> _map = null;
028    static
029    {
030        _map = new HashMap<Integer, ReverseLimitTypeValue>();
031        for (ReverseLimitTypeValue type : ReverseLimitTypeValue.values())
032        {
033            _map.put(type.value, type);
034        }
035    }
036
037    /**
038     * Gets ReverseLimitTypeValue from specified value
039     * @param value Value of ReverseLimitTypeValue
040     * @return ReverseLimitTypeValue of specified value
041     */
042    public static ReverseLimitTypeValue valueOf(int value)
043    {
044        ReverseLimitTypeValue retval = _map.get(value);
045        if (retval != null) return retval;
046        return ReverseLimitTypeValue.values()[0];
047    }
048}