DeviceFeature Enumeration

From Neurotech Software Development Kit
Jump to: navigation, search

Android

ru.neurotech.neurodevices

Enum DeviceFeature

  • java.lang.Object
    • java.lang.Enum<<a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a>>
      • ru.neurotech.neurodevices.DeviceFeature
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<<a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a>>


    public enum <span class="typeNameLabel">DeviceFeature</span>
    extends java.lang.Enum<<a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a>>
    • <a name="enum.constant.summary"> </a>

      Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html#MEMS">MEMS</a> 
      <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html#SIGNAL">SIGNAL</a> 
      <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html#SPYRO">SPYRO</a> 
      <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html#STIMUL">STIMUL</a> 
      <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html#UNKNOWN">UNKNOWN</a> 
    • <a name="method.summary"> </a>

      Method Summary

      All Methods <a href="javascript:show(1);">Static Methods</a> <a href="javascript:show(8);">Concrete Methods</a> 
      Modifier and Type Method and Description
      static <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html#fromIntCode-int-">fromIntCode</a>(int state) 
      static <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html#valueOf-java.lang.String-">valueOf</a>(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a>[] <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html#values--">values</a>()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • <a name="methods.inherited.from.class.java.lang.Enum"> </a>

        Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • <a name="methods.inherited.from.class.java.lang.Object"> </a>

        Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • <a name="enum.constant.detail"> </a>

      Enum Constant Detail

      <a name="SIGNAL"> </a>

      • SIGNAL

        public static final <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> SIGNAL

      <a name="MEMS"> </a>

      • MEMS

        public static final <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> MEMS

      <a name="SPYRO"> </a>

      • SPYRO

        public static final <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> SPYRO

      <a name="STIMUL"> </a>

      • STIMUL

        public static final <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> STIMUL

      <a name="UNKNOWN"> </a>

      • UNKNOWN

        public static final <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> UNKNOWN
    • <a name="method.detail"> </a>

      Method Detail

      <a name="values--"> </a>

      • values

        public static <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a>[] values()
        Returns an array containing the constants of this enum type, in

        the order they are declared. This method may be used to iterate over the constants as follows:

        for (DeviceFeature c : DeviceFeature.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared

      <a name="valueOf-java.lang.String-"> </a>

      • valueOf

        public static <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name.

        The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are

        not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null

      <a name="fromIntCode-int-"> </a>

      • fromIntCode

        public static <a href="../../../ru/neurotech/neurodevices/DeviceFeature.html" title="enum in ru.neurotech.neurodevices">DeviceFeature</a> fromIntCode(int state)