Package nis.svc.mdl.api
Enum ModelReport.Type
- java.lang.Object
-
- java.lang.Enum<ModelReport.Type>
-
- nis.svc.mdl.api.ModelReport.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ModelReport.Type>
- Enclosing interface:
- ModelReport
public static enum ModelReport.Type extends java.lang.Enum<ModelReport.Type>
A report line item code.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DONE
Indicates the process is done.EXEC
Indicates start of a process.FAIL
A FAIL occurred.FOUND
Indicates security ID was found and an exposure record provided.INFO
Information during a process.PLUG
A report from an identifier plug in.REMOVED
Indicates security ID was removed from the exposure table.STOP
Indicates the process is stopped.SWAP
Indicates swaps found for an id.UNFOUND
Indicates that the process failed to find a suitable security and no exposure record provided.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModelReport.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ModelReport.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAIL
public static final ModelReport.Type FAIL
A FAIL occurred.
-
INFO
public static final ModelReport.Type INFO
Information during a process.
-
EXEC
public static final ModelReport.Type EXEC
Indicates start of a process.
-
DONE
public static final ModelReport.Type DONE
Indicates the process is done.
-
STOP
public static final ModelReport.Type STOP
Indicates the process is stopped.
-
FOUND
public static final ModelReport.Type FOUND
Indicates security ID was found and an exposure record provided.
-
REMOVED
public static final ModelReport.Type REMOVED
Indicates security ID was removed from the exposure table.
-
SWAP
public static final ModelReport.Type SWAP
Indicates swaps found for an id.
-
PLUG
public static final ModelReport.Type PLUG
A report from an identifier plug in.
-
UNFOUND
public static final ModelReport.Type UNFOUND
Indicates that the process failed to find a suitable security and no exposure record provided.
-
-
Method Detail
-
values
public static ModelReport.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ModelReport.Type c : ModelReport.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModelReport.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-