Enum Class AvrDevice

java.lang.Object
java.lang.Enum<AvrDevice>
be.lmenten.avr.core.descriptor.AvrDevice
All Implemented Interfaces:
Serializable, Comparable<AvrDevice>, Constable

public enum AvrDevice extends Enum<AvrDevice>
  • Enum Constant Details

    • ATMEGA2560

      public static final AvrDevice ATMEGA2560
    • ATMEGA328

      public static final AvrDevice ATMEGA328
    • ATMEGA328P

      public static final AvrDevice ATMEGA328P
    • ATMEGA328PB

      public static final AvrDevice ATMEGA328PB
  • Method Details

    • values

      public static AvrDevice[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AvrDevice valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • lookup

      public static AvrDevice lookup(String deviceName)
    • getId

      public String getId()
    • getBaseCore

      public AvrDevice getBaseCore()
    • getDescriptor

      public CoreDescriptor getDescriptor()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<AvrDevice>