TABLE OF CONTENTS


OBJECT TYPE ARRAY/T_INTVALUES [ Structures ]

[ Top ] [ Structures ]

NAME

    T_INTVALUES -- Object type representing a collection (array) of T_INTVALUE objects.

DESCRIPTION

    An array of T_INTVALUE objects that represent an ordered set of tokens and separators extracted from a string by the Tokenizer function.
    Used by PIPELINED Tokenizer function.

AUTHOR

    Simon Greener

HISTORY

    Simon Greener - Jan 2005 - Original coding.

COPYRIGHT

    (c) 2012-2018 by TheSpatialDBAdvisor/Simon Greener

SOURCE

CREATE OR REPLACE TYPE &&INSTALL_SCHEMA..T_INTVALUES
           IS TABLE OF &&INSTALL_SCHEMA..T_INTVALUE;

OBJECT TYPE ARRAY/T_TOKENS [ Structures ]

[ Top ] [ Structures ]

NAME

    T_TOKENS -- Object type representing a collection (array) of T_TOKEN objects.

DESCRIPTION

    An array of T_TOKEN objects that represent an ordered set of tokens and separators extracted from a string by the Tokenizer function.
    Used by PIPELINED Tokenizer function.

AUTHOR

    Simon Greener

HISTORY

    Simon Greener - Jan 2005 - Original coding.

COPYRIGHT

    (c) 2012-2018 by TheSpatialDBAdvisor/Simon Greener

SOURCE

CREATE OR REPLACE TYPE &&INSTALL_SCHEMA..T_TOKENS
           IS TABLE OF &&INSTALL_SCHEMA..T_TOKEN;

OBJECT TYPE/T_INTVALUE [ Types ]

[ Top ] [ Types ]

NAME

    T_INTVALUE -- Object type representing a single integer in a series of integers.

DESCRIPTION

    An object type that gives a name (IntValue) to a single integer within a series of integers generated by TOOLS.Generate_Series.

AUTHOR

    Simon Greener

HISTORY

    Simon Greener - Jan 2005 - Original coding.
    Simon Greener - Jan 2013 - Port from GEOM Package.

COPYRIGHT

    (c) 2012-2018 by TheSpatialDBAdvisor/Simon Greener

OBJECT TYPE/T_TOKEN [ Types ]

[ Top ] [ Types ]

NAME

    T_TOKEN -- Object type representing a single cell in a matrix of non-overlapping (no gaps) cells.

DESCRIPTION

    An object type that represents a single cell within an array of
    optimized rectanges representing a grid or matrix of "raster" style objects.
    Used mainly with T_TOKENs in PIPELINED T_GEOMETRY methods.

NOTES

    No methods are declared on this type.

AUTHOR

    Simon Greener

HISTORY

    Simon Greener - Jan 2005 - Original coding.
    Simon Greener - Jan 2013 - Port from GEOM Package.

COPYRIGHT

    (c) 2012-2018 by TheSpatialDBAdvisor/Simon Greener

T_INTVALUE/ATTRIBUTES(T_INTVALUE) [ Variables ]

[ Top ] [ T_INTVALUE ] [ Variables ]

ATTRIBUTES

    IntValue -- Integer value returned by generate_series

SOURCE

  IntValue Integer

T_TOKEN/ATTRIBUTES(T_TOKEN) [ Variables ]

[ Top ] [ T_TOKEN ] [ Variables ]

ATTRIBUTES

    id        -- unique identifier associated with token: starts from 1 for first token extracted through to max for last.
    token     -- The actual token.
    separator -- The trailing separator that was immediately after the token in the string.

SOURCE

  id        integer,
  token     varchar2(30000),
  separator varchar2(30000)