Class OrgPolicyReport.Range

java.lang.Object
de.aristaflow.adept2.model.orgmodel.OrgPolicyReport.Range
All Implemented Interfaces:
Serializable
Enclosing class:
OrgPolicyReport

public static class OrgPolicyReport.Range extends Object implements Serializable
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 Details

    • Range

      public Range(int beginColumn, int endColumn)
      Constructs a new Range with the given begin and end column.
      Parameters:
      beginColumn - the begin/first column of this range, inclusive
      endColumn - the end/last column of this range, exclusive
  • Method Details

    • getBeginColumn

      public int getBeginColumn()
      Returns the begin column of this range.
      Returns:
      the begin column of this range
    • getEndColumn

      public int getEndColumn()
      Returns the end column of this range.
      Returns:
      the end column of this range
    • toString

      public String toString()
      Overrides:
      toString in class Object