 com.vertica.sdk.BaseDataOID | |
 com.vertica.sdk.Basics | |
 com.vertica.sdk.BuildInfo | |
 com.vertica.sdk.ColumnTypes | Represents (unsized) types of the columns used as input/output of a User Defined Function/Transform Function |
 com.vertica.sdk.ContinuousReader | |
 com.vertica.sdk.ContinuousRejecter | |
 com.vertica.sdk.ContinuousUDParser.CoroutineState | |
 com.vertica.sdk.DataBuffer | |
 com.vertica.sdk.DFSConstants | |
 com.vertica.sdk.DFSFile | |
 com.vertica.sdk.DFSFile.DFSDistribution | |
 com.vertica.sdk.DFSFile.DFSScope | |
 com.vertica.sdk.DFSFileReader | |
 com.vertica.sdk.DFSFileStatus | |
 com.vertica.sdk.DFSFileWriter | |
 com.vertica.sdk.FileManager | |
 com.vertica.sdk.PerColumnParamReader | : A wrapper around a map from column to ParamReader |
 com.vertica.sdk.PGUDxShared | |
 com.vertica.sdk.PlanContext | Shared query-plan state, used when different parts of query planning take place on different nodes. For example, if some work is done on the query initiator node and some is done on each node executing the query, this class stores shared state |
  com.vertica.sdk.NodeSpecifyingPlanContext | Interface that allows storage of query-plan state, when different parts of query planning take place on different computers. For example, if some work is done on the query initiator node and some is done on each node executing the query |
   com.vertica.sdk.ExecutorPlanContext | PlanContext object whose scope is limited to a single executor node: it and its parameters will never be serialized. In addition to providing information about nodes involved in a query, it indicates how many threads are available and allocated for a load. This class is used for UDLs |
 com.vertica.sdk.Portion | |
 com.vertica.sdk.RejectedRecord | |
 com.vertica.sdk.ScalarFunction.InterfaceType | |
 com.vertica.sdk.ScalarFunctionFactory.strictness | |
 com.vertica.sdk.ScalarFunctionFactory.volatility | |
 com.vertica.sdk.ServerInterface | Provides UDxs with access to the Vertica server |
 com.vertica.sdk.SessionParamReaderMap | |
 com.vertica.sdk.SessionParamWriterMap | |
 com.vertica.sdk.SizedColumnTypes | Represents types and information to determine the size of the columns as input/output of a User Defined Function/Transform |
 com.vertica.sdk.SourceIterator | Constructs a set of Sources to be used by an IterativeSourceFactory |
  com.vertica.sdk.DefaultSourceIterator | |
 com.vertica.sdk.StandardTypeCoercion.BooleanEvaluation | |
 com.vertica.sdk.StandardTypeCoercion.SpecialBigDecimal | |
 com.vertica.sdk.State | |
 com.vertica.sdk.State.InputState | |
 com.vertica.sdk.State.StreamState | |
 com.vertica.sdk.StringUtils | |
 com.vertica.sdk.TimestampUDxShared | |
 com.vertica.sdk.TimestampUDxShared.DTtype | |
 com.vertica.sdk.TransformFunctionPhase | Interface to provide compile-time information for a single phase of a multi-phase user-defined transform function |
 com.vertica.sdk.TypeCoercion | |
  com.vertica.sdk.NullTypeCoercion | |
   com.vertica.sdk.NoopTypeCoercion | |
    com.vertica.sdk.StandardTypeCoercion | |
 com.vertica.sdk.TypeCoercion.MetaType | |
 com.vertica.sdk.TypeCoercionPolicy | |
 com.vertica.sdk.UDFilter | Reads input data from a UDSource or another UDFilter and transforms it |
 com.vertica.sdk.UDParser | Parses an input stream into Vertica tuples (rows to be inserted into a table) |
  com.vertica.sdk.ContinuousUDParser | |
 com.vertica.sdk.UDXFactory | Parent class for UDx factories; not intended for direct use by applications |
  com.vertica.sdk.AnalyticFunctionFactory | Interface for declaring parameters and return types for, and instantiating, an associated AnalyticFunction |
  com.vertica.sdk.MultiPhaseTransformFunctionFactory | Interface for declaring parameters and return types for, and instantiating, an associated multi-phase transform function. This class is similar to, but not a subclass of, TransformFunctionFactory |
  com.vertica.sdk.ScalarFunctionFactory | Interface for declaring parameters and return types for, and instantiating, an associated ScalarFunction |
  com.vertica.sdk.TransformFunctionFactory | Interface for declaring parameters and return types for, and instantiating, an associated TransformFunction |
  com.vertica.sdk.UDLFactory | |
   com.vertica.sdk.FilterFactory | Produces and initializes UDFilters to transform input data before parsing |
   com.vertica.sdk.IterativeSourceFactory | Source factory that works with a SourceIterator to produce UDSources |
    com.vertica.sdk.SourceFactory | Produces and initializes UDSources to process input data sources |
   com.vertica.sdk.ParserFactory | Produces and initializes UDParsers to parse input into tuples |
 com.vertica.sdk.UDXFactory.UDXType | |
 com.vertica.sdk.UDXLibrary | MetaData interface for Vertica User Defined extension libraries |
 com.vertica.sdk.UDXObject | Base class for Vertica User-Defined extensions (the function classes themselves). Not intended for direct use by applications |
  com.vertica.sdk.ScalarFunction | Interface for User-Defined Scalar Function (UDSF). A UDSF produces a single value from a row of data |
  com.vertica.sdk.UDXObjectCancelable | Base class for CANCELABLE Vertica User Defined extensions |
   com.vertica.sdk.AnalyticFunction | Interface for User-Defined Analytic Function (UDAnF). A UDAnF operates on rows of data and returns rows of data, not necessarily 1:1 |
   com.vertica.sdk.TransformFunction | Interface for User-Defined Transform Function (UDTF). A UDTF operates on a table segment and returns zero or more rows of data |
 com.vertica.sdk.UnsizedUDSource | |
  com.vertica.sdk.UDSource | Acquires data from an external source (such as a file or URL) and produces that data in a streaming manner |
 com.vertica.sdk.VerticaBlock | : Represents an in-memory block of tuples |
  com.vertica.sdk.BlockReader | Iterator interface for reading rows in a Vertica block |
   com.vertica.sdk.ParamReader | Provides read access to a set of named parameters. This class provides type-specific methods to retrieve values |
    com.vertica.sdk.ParamWriter | Provides write access to a set of named parameters. This class extends ParamReader to add type-specific methods to write values |
     com.vertica.sdk.ExecutorParamWriter | An ExecutorParamWriter is a ParamWriter whose scope is limited to a single executor node - it will never be serialized for transfer to a different node. As a result, any object which is allocated from a Vertica memory pool (i.e. a ServerInterface's allocator object) can have its address saved in the ExecutorParamWriter (see setPointer()), and be safely retrieved later on (see getPointer()) from a different API call in the same query |
   com.vertica.sdk.PartitionReader | PartitionReader provides an iterator-based read interface over all input data in a single partition. Automatically fetches data a block-at-a-time, as needed |
    com.vertica.sdk.AnalyticPartitionReader | Provides an iterator-based read interface over all the partition_by keys, order_by keys, and function arguments in a partition |
  com.vertica.sdk.BlockWriter | Iterator interface for writing rows to a Vertica block |
  com.vertica.sdk.PartitionWriter | PartitionWriter provides an iterator-based write interface over output data for a single partition. Automatically makes space a block-at-a-time, as needed |
   com.vertica.sdk.AnalyticPartitionWriter | Partition writer for all input data in a single partition. It automatically makes space as needed |
   com.vertica.sdk.StreamWriter | |
 com.vertica.sdk.VerticaType | Represents types of data that are passed into and returned back from user's code |
 com.vertica.sdk.vmap.v1.KeySelector | |
  com.vertica.sdk.vmap.v1.Encoder | |
  com.vertica.sdk.vmap.v1.Encoder.MatchingKeySelector | |
 com.vertica.sdk.VNumeric | Representation of NUMERIC, fixed point data types in Vertica |
 com.vertica.sdk.VResources | Representation of the resources user code can ask Vertica for |
 com.vertica.sdk.VString | Representation of a String in Vertica. All character data is internally encoded as UTF-8 characters and is not NULL terminated |
 RuntimeException | |
  com.vertica.sdk.UdfException | Contains error information, UDx code can throw object of this class to Vertica to indicate an error |
 Throwable | |
  com.vertica.sdk.DestroyInvocation | Used to support canceling UDx and invoking the UDx's destroy call back function. This exception is thrown when Vertica needs to cancel the running UDx to jump out of current control flow |
 IllegalArgumentException | |
  com.vertica.sdk.TypeCoercionException | |
  com.vertica.sdk.vmap.VMapEncodingException | |
   com.vertica.sdk.vmap.InvalidMapKeyException | |
 Comparator | |
  com.vertica.sdk.IdentComparator | |