Class OrgPolicyReport.Range
java.lang.Object
de.aristaflow.adept2.model.orgmodel.OrgPolicyReport.Range
- All Implemented Interfaces:
Serializable
- Enclosing class:
- OrgPolicyReport
Represents a range within an OrgPolicy.
beginColumn and
endColumn can be used directly as parameters in
String.substring(int, int) to retrieve a section of the OrgPolicy
referred to by the corresponding entry.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRange(int beginColumn, int endColumn) Constructs a newRangewith the given begin and end column. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the begin column of this range.intReturns the end column of this range.toString()
-
Constructor Details
-
Range
public Range(int beginColumn, int endColumn) Constructs a newRangewith the given begin and end column.- Parameters:
beginColumn- the begin/first column of this range, inclusiveendColumn- the end/last column of this range, exclusive
-
-
Method Details