Module pygw.statistics.statistic_type

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 pygw.base import GeoWaveObject


class StatisticType(GeoWaveObject):
    """
    Base statistic type.
    """

    def __init__(self, java_ref):
        super().__init__(java_ref)

    def get_string(self):
        return self._java_ref.getString()


class IndexStatisticType(StatisticType):
    pass


class DataTypeStatisticType(StatisticType):
    pass


class FieldStatisticType(StatisticType):
    pass

Classes

class DataTypeStatisticType (java_ref)

Base statistic type.

Source code
class DataTypeStatisticType(StatisticType):
    pass

Ancestors

Inherited members

class FieldStatisticType (java_ref)

Base statistic type.

Source code
class FieldStatisticType(StatisticType):
    pass

Ancestors

Inherited members

class IndexStatisticType (java_ref)

Base statistic type.

Source code
class IndexStatisticType(StatisticType):
    pass

Ancestors

Inherited members

class StatisticType (java_ref)

Base statistic type.

Source code
class StatisticType(GeoWaveObject):
    """
    Base statistic type.
    """

    def __init__(self, java_ref):
        super().__init__(java_ref)

    def get_string(self):
        return self._java_ref.getString()

Ancestors

Subclasses

Methods

def get_string(self)
Source code
def get_string(self):
    return self._java_ref.getString()

Inherited members