NetTopologySuite
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Pages
Package NetTopologySuite.Utilities

Classes

class  Assert
 A utility for making programming assertions.
 
class  AssertionFailedException
 
class  BitConverter
 A supoort class: the purpose is to integrate System.BitConverter methods not presents in .NET Compact Framework. More...
 
class  Caster
 Static utility class for casting objects
 
class  CollectionUtil
 Executes a transformation function on each element of a collection and returns the results in a new List. More...
 
class  CoordinateArrayFilter
 A CoordinateFilter that creates an array containing every coordinate in a Geometry. More...
 
class  CoordinateCompare
 CoordinateCompare is used in the sorting of arrays of Coordinate objects. Implements a lexicographic comparison. More...
 
class  CoordinateCountFilter
 A CoordinateFilter that counts the total number of coordinates in a Geometry. More...
 
class  Degrees
 Converts degrees to radians. More...
 
class  EnumUtility
 
class  GeometricShapeFactory
 Computes various kinds of common geometric shapes. Allows various ways of specifying the location and extent of the shapes, as well as number of line segments used to form them. More...
 
class  GeoToolsStreamTokenizer
 The StreamTokenizer class takes an input stream and parses it into "tokens", allowing the tokens to be read one at a time. The parsing process is controlled by a table and a number of flags that can be set to various states. The stream tokenizer can recognize identifiers, numbers, quoted strings, and various comment style. More...
 
class  Global
 
class  Guard
 
class  HexConverter
 
class  Memory
 Utility functions to report memory usage. More...
 
class  PlatformUtilityEx
 
class  PriorityQueue< T >
 A priority queue over a set of IComparable{T} objects. /summary>

Template Parameters
TObjects to add

<author>Martin Davis</author> More...

 
class  Radians
 Converts radians to degress. More...
 
class  ReverseOrder
 
class  UniqueCoordinateArrayFilter
 A CoordinateFilter that builds a set of Coordinates. The set of coordinates contains no duplicate points. More...
 

Enumerations

enum  TokenType {
  TokenType.Word, TokenType.Number, TokenType.Eol, TokenType.Eof,
  TokenType.Whitespace, TokenType.Symbol
}
 Represents the type of token created by the StreamTokenizer class. More...
 

Enumeration Type Documentation

Represents the type of token created by the StreamTokenizer class.

Enumerator
Word 

Indicates that the token is a word.

Number 

Indicates that the token is a number.

Eol 

Indicates that the end of line has been read. The field can only have this value if the eolIsSignificant method has been called with the argument true.

Eof 

Indicates that the end of the input stream has been reached.

Whitespace 

Indictaes that the token is white space (space, tab, newline).

Symbol 

Characters that are not whitespace, numbers, etc...