HCE Project Python language Distributed Tasks Manager Application, Distributed Crawler Application and client API bindings.  2.0.0-chaika
Hierarchical Cluster Engine Python language binding
app.Utils.SQLExpression Class Reference
Inheritance diagram for app.Utils.SQLExpression:
Collaboration diagram for app.Utils.SQLExpression:

Public Member Functions

def __init__ (self, stringExpression="")
 
def __str__ (self)
 

Public Attributes

 str
 

Detailed Description

Definition at line 133 of file Utils.py.

Constructor & Destructor Documentation

◆ __init__()

def app.Utils.SQLExpression.__init__ (   self,
  stringExpression = "" 
)

Definition at line 134 of file Utils.py.

134  def __init__(self, stringExpression=""):
135  super(SQLExpression, self).__init__()
136  if stringExpression is None:
137  self.str = ""
138  else:
139  self.str = str(stringExpression)
140 
def __init__(self)
constructor
Definition: UIDGenerator.py:19

Member Function Documentation

◆ __str__()

def app.Utils.SQLExpression.__str__ (   self)

Definition at line 141 of file Utils.py.

141  def __str__(self):
142  return self.str
143 
144 
145 
146 # #The PathMaker class
147 #
148 # This class purpose to use as static method container to split FS directory pattern on two parts
149 # @param string is a directory pattern
150 # @param subdirLen is a number of characters in sub-directory item
151 #

Member Data Documentation

◆ str

app.Utils.SQLExpression.str

Definition at line 137 of file Utils.py.


The documentation for this class was generated from the following file: