Package edu.suffolk.litlab.efsp.utils
Enum Class InfoCollector.Dep
- All Implemented Interfaces:
Serializable
,Comparable<InfoCollector.Dep>
,Constable
- Enclosing class:
InfoCollector
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA foundational variable is used to complete other, non-nested variables.Optional variables aren't necessary, and are only for extra info, like addresses for all parties to the case.A required variable is needed for filing, but the parsing into variables can continue without it. -
Method Summary
Modifier and TypeMethodDescriptionstatic InfoCollector.Dep
Returns the enum constant of this class with the specified name.static InfoCollector.Dep[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
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
Optional variables aren't necessary, and are only for extra info, like addresses for all parties to the case.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-