Enum AddVisitor.Position
java.lang.Object
java.lang.Enum<AddVisitor.Position>
gov.nist.secauto.oscal.lib.profile.resolver.alter.AddVisitor.Position
- All Implemented Interfaces:
Serializable
,Comparable<AddVisitor.Position>
- Enclosing class:
- AddVisitor
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic AddVisitor.Position
Get the position associated with the providedname
.static AddVisitor.Position
Returns the enum constant of this type with the specified name.static AddVisitor.Position[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
BEFORE
-
AFTER
-
STARTING
-
ENDING
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forName
Get the position associated with the providedname
.- Parameters:
name
- the name to identify the position for- Returns:
- the associated position or
null
if the name is not associated with a position
-