Enum Class PacketExportMode

java.lang.Object
java.lang.Enum<PacketExportMode>
org.ka2ddo.yaac.core.PacketExportMode
All Implemented Interfaces:
Serializable, Comparable<PacketExportMode>, Constable

public enum PacketExportMode extends Enum<PacketExportMode>
This enumeration defines the various formats that can be used to write a AX.25 frame to a disk file.
Author:
Andrew Pavlin, KA2DDO
  • Enum Constant Details

  • Method Details

    • values

      public static PacketExportMode[] 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 PacketExportMode 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
    • getFileType

      public String getFileType()
      Get the file type suffix for this packet export mode.
      Returns:
      String of the file type (without the leading period)
    • valueFor

      public static PacketExportMode valueFor(String filetype)
      Find the PacketExportMode enum for the specified filetype.
      Parameters:
      filetype - String of a filetype that should be supported for YAAC APRS packet log files
      Returns:
      matching PacketExportMode enum
      Throws:
      IllegalArgumentException - if the filetype doesn't match any supported mode
    • toString

      public String toString()
      Returns the name of this enum constant, as contained in the declaration. This method may be overridden, though it typically isn't necessary or desirable. An enum type should override this method when a more "programmer-friendly" string form exists.
      Overrides:
      toString in class Enum<PacketExportMode>
      Returns:
      the name of this enum constant