Packages

package util

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. class Assert extends AnyRef
  2. class AssertionFailedException extends RuntimeException

    Thrown when the application is in an inconsistent state.

    Thrown when the application is in an inconsistent state. Indicates a problem with the code.

    Version

    1.7

  3. class GeometricShapeFactory extends AnyRef
  4. class IntArrayList extends AnyRef

    An extendable array of primitive int values.

  5. class PriorityQueue extends AnyRef

    A priority queue over a set of {link Comparable} objects.

  6. class UniqueCoordinateArrayFilter extends CoordinateFilter

Value Members

  1. object Assert

    A utility for making programming assertions.

    A utility for making programming assertions.

    Version

    1.7

  2. object GeometricShapeFactory

    Computes various kinds of common geometric shapes.

    Computes various kinds of common geometric shapes. Provides various ways of specifying the location and extent and rotations of the generated shapes, as well as number of line segments used to form them.

    Example of usage:

    GeometricShapeFactory gsf = new GeometricShapeFactory();
     gsf.setSize(100);
     gsf.setNumPoints(100);
     gsf.setBase(new Coordinate(100, 100));
     gsf.setRotation(0.5);
    Polygon rect = gsf.createRectangle();
    

    Version

    1.7

  3. object NumberUtil
  4. object UniqueCoordinateArrayFilter

    A {link CoordinateFilter} that extracts a unique array of Coordinates.

    A {link CoordinateFilter} that extracts a unique array of Coordinates. The array of coordinates contains no duplicate points. It preserves the order of the input points.

    Version

    1.7

Ungrouped