utils.rcclient.enums.segment_enums

Module Contents

Classes

Operator

str(object='') -> str

DataType

str(object='') -> str

ExpressionType

str(object='') -> str

GroupType

str(object='') -> str

class utils.rcclient.enums.segment_enums.Operator

Bases: str, enum.Enum

str(object=’’) -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to ‘strict’.

EQUAL_TO = 'EqualTo'
CONTAINS = 'Contains'
GREATER_THAN = 'GreaterThan'
LESS_THAN = 'LessThan'
NOT_EQUAL_TO = 'NotEqualTo'
REG_EX = 'RegEX'
IS_IN_LIST = 'IsInList'
GREATER_OR_EQUAL = 'GreaterOrEqual'
LESSER_OR_EQUAL = 'LesserOrEqual'
IS_NULL = 'IsNull'
IS_NOT_NULL = 'IsNotNull'
class utils.rcclient.enums.segment_enums.DataType

Bases: str, enum.Enum

str(object=’’) -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to ‘strict’.

DOUBLE = 'DOUBLE'
FLOAT = 'FLOAT'
STRING = 'STRING'
INTEGER = 'INTEGER'
LONG = 'LONG'
TIMESTAMP = 'TIMESTAMP'
BOOLEAN = 'BOOLEAN'
SET = 'SET'
LIST = 'LIST'
MAP = 'MAP'
BLOB = 'BLOB'
EMPTY = 'EMPTY'
ANY = 'ANY'
class utils.rcclient.enums.segment_enums.ExpressionType

Bases: str, enum.Enum

str(object=’’) -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to ‘strict’.

ITEM = 'item'
GROUP = 'group'
GLOBAL_REF = 'ref'
DATA_LABEL = 'data-label'
ALWAYS_TRUE = 'always-true'
ALWAYS_FALSE = 'always-false'
RECIPE = 'recipe'
class utils.rcclient.enums.segment_enums.GroupType

Bases: str, enum.Enum

str(object=’’) -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to ‘strict’.

AND = 'AND'
OR = 'OR'