Enum Class Limelight.LoadStatus
- All Implemented Interfaces:
Serializable, Comparable<Limelight.LoadStatus>, Constable
- Enclosing class:
Limelight
Result of loading a
Limelight.PipelineConfiguration or Limelight.FieldMap.-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNo contents or no file name were given (null or empty).Loaded and within the size cap.The deploy-folder file could not be read.The contents exceed the size cap. -
Method Summary
Modifier and TypeMethodDescriptionstatic Limelight.LoadStatusReturns the enum constant of this class with the specified name.static Limelight.LoadStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OK
Loaded and within the size cap. -
NO_CONTENTS
No contents or no file name were given (null or empty). -
READ_FAILED
The deploy-folder file could not be read. -
TOO_LARGE
The contents exceed the size cap.
-
-
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
-