Enum Class Recorder

java.lang.Object
java.lang.Enum<Recorder>
org.deltava.beans.flight.Recorder
All Implemented Interfaces:
Serializable, Comparable<Recorder>, Constable

public enum Recorder extends Enum<Recorder>
An enumeration of Flight Data Recorder clients.
Since:
7.0
Version:
7.0
Author:
Luke
  • Enum Constant Details

    • ACARS

      public static final Recorder ACARS
    • XACARS

      public static final Recorder XACARS
    • SIMFDR

      public static final Recorder SIMFDR
  • Method Details

    • values

      public static Recorder[] 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 Recorder 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
    • toString

      public String toString()
      Returns the recorder name.
      Overrides:
      toString in class Enum<Recorder>