Enum Class Hint

java.lang.Object
java.lang.Enum<Hint>
org.applecommander.hint.Hint
All Implemented Interfaces:
Serializable, Comparable<Hint>, Constable

public enum Hint extends Enum<Hint>
Helpful hints that indicate something "interesting" (to code at least) about this thing.
See Also:
  • Enum Constant Details

    • NIBBLE_SECTOR_ORDER

      public static final Hint NIBBLE_SECTOR_ORDER
      "Nibble" sector order is really physical sector order.
    • DOS_SECTOR_ORDER

      public static final Hint DOS_SECTOR_ORDER
      Sectors are in DOS 3.3 sector order.
    • PRODOS_BLOCK_ORDER

      public static final Hint PRODOS_BLOCK_ORDER
      Sectors are organized in ProDOS sector order. Typically, this is initially read as a ProDOS block and (if needed), mapped back to DOS tracks and sectors.
    • ORIGIN_SHRINKIT

      public static final Hint ORIGIN_SHRINKIT
      Temporary flag to indicate this image was automagically extracted from a SHK or SDK image.
    • UNIVERSAL_DISK_IMAGE

      public static final Hint UNIVERSAL_DISK_IMAGE
      Origin for this image was a 2IMG image.
    • DISK_COPY_IMAGE

      public static final Hint DISK_COPY_IMAGE
      Origin for this image was a DiskCopy image.
    • NONSTANDARD_NIBBLE_IMAGE

      public static final Hint NONSTANDARD_NIBBLE_IMAGE
      This flag is used to indicate a protected disk. Meaning factories may need to search a bit more for disk markers.
  • Method Details

    • values

      public static Hint[] 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 Hint 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