axleCountInGroup property

IntegerRange? axleCountInGroup
getter/setter pair

Number of axles in a group for which the current restriction applies. axleCountInGroup is a set of axles close together: single, tandem (2), triple (3), etc. Can be used in conjunction with RestrictionType.weightPerAxleGroup to specify restriction based on weight per axle group. The axleCountInGroup considers number of axles in a specific axle group (usually rear axles on the truck or trailer). This can be used to limit weight for a tandem/triple rear axle group. If the upper limit of the axleCountInGroup range is 0 or null then it means the restriction applies for values >= lower limit, i.e. the upper limit of range if infinite or unbound. Examples:

  • (1,1) → Restriction applies to single axle group.
  • (2,2) → Restriction applies to tandem axle group.
  • (2,4) → Restriction applies to any axle group from 2 to 4 axles.
  • (2,0) → Restriction applies to axle groups with 2 or more axles.

Implementation

IntegerRange? axleCountInGroup;