Module pygw.base.data_type_adapter

Source code
#
# Copyright (c) 2013-2022 Contributors to the Eclipse Foundation

#
# See the NOTICE file distributed with this work for additional information regarding copyright
# ownership. All rights reserved. This program and the accompanying materials are made available
# under the terms of the Apache License, Version 2.0 which accompanies this distribution and is
# available at http://www.apache.org/licenses/LICENSE-2.0.txt
# ===============================================================================================

from .geowave_object import GeoWaveObject


class DataTypeAdapter(GeoWaveObject):
    """
    Base class for data type adapters.
    """

    def get_type_name(self):
        """
        Returns:
            The type name of the data adapter.
        """
        return self._java_ref.getTypeName()

Classes

class DataTypeAdapter (java_ref)

Base class for data type adapters.

Source code
class DataTypeAdapter(GeoWaveObject):
    """
    Base class for data type adapters.
    """

    def get_type_name(self):
        """
        Returns:
            The type name of the data adapter.
        """
        return self._java_ref.getTypeName()

Ancestors

Subclasses

Methods

def get_type_name(self)

Returns

The type name of the data adapter.

Source code
def get_type_name(self):
    """
    Returns:
        The type name of the data adapter.
    """
    return self._java_ref.getTypeName()

Inherited members