Enum Class InfoCollector.Dep

java.lang.Object
java.lang.Enum<InfoCollector.Dep>
edu.suffolk.litlab.efspserver.services.InfoCollector.Dep
All Implemented Interfaces:
Serializable, Comparable<InfoCollector.Dep>, Constable
Enclosing class:
InfoCollector

public static enum InfoCollector.Dep extends Enum<InfoCollector.Dep>
  • Enum Constant Details

    • FOUNDATIONAL

      public static final InfoCollector.Dep FOUNDATIONAL
      A foundational variable is used to complete other, non-nested variables. For example, `users` and `user_started_case` are both foundational to `defendants`
    • REQUIRED

      public static final InfoCollector.Dep REQUIRED
      A required variable is needed for filing, but the parsing into variables can continue without it. An example of this is that user[0] needs an email, but none of the other users do, and you can create the entire filing without one.
    • OPTIONAL

      public static final InfoCollector.Dep OPTIONAL
      Optional variables aren't necessary, and are only for extra info, like addresses for all parties to the case.
  • Method Details

    • values

      public static InfoCollector.Dep[] 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 InfoCollector.Dep 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