Enum Class GPX.Reader.Mode

java.lang.Object
java.lang.Enum<GPX.Reader.Mode>
io.jenetics.jpx.GPX.Reader.Mode
All Implemented Interfaces:
Serializable, Comparable<GPX.Reader.Mode>, Constable
Enclosing class:
GPX.Reader

public static enum GPX.Reader.Mode extends Enum<GPX.Reader.Mode>
The possible GPX reader modes.
Since:
1.3
Version:
1.3
  • Enum Constant Details

    • LENIENT

      public static final GPX.Reader.Mode LENIENT
      In this mode the GPX reader tries to ignore invalid GPX values and elements.
    • STRICT

      public static final GPX.Reader.Mode STRICT
      Expects to read valid GPX files.
  • Method Details

    • values

      public static GPX.Reader.Mode[] 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 GPX.Reader.Mode 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