Uses of Class
ru.curs.celesta.score.Grain
-
Packages that use Grain Package Description ru.curs.celesta.dbutils.adaptors Adaptors for various RDBMS.ru.curs.celesta.dbutils.adaptors.ddl Root package of ddl adaptors.ru.curs.celesta.score Package containing metadata of table structure. -
-
Uses of Grain in ru.curs.celesta.dbutils.adaptors
Methods in ru.curs.celesta.dbutils.adaptors with parameters of type Grain Modifier and Type Method Description void
DBAdaptor. dropIndex(Grain g, DbIndexInfo dBIndexInfo)
Removes table index in the grain.abstract List<DbFkInfo>
DBAdaptor. getFKInfo(Connection conn, Grain g)
Returns information on the foreign keys from grain.List<DbFkInfo>
FirebirdAdaptor. getFKInfo(Connection conn, Grain g)
List<DbFkInfo>
H2Adaptor. getFKInfo(Connection conn, Grain g)
List<DbFkInfo>
MSSQLAdaptor. getFKInfo(Connection conn, Grain g)
List<DbFkInfo>
OraAdaptor. getFKInfo(Connection conn, Grain g)
List<DbFkInfo>
PostgresAdaptor. getFKInfo(Connection conn, Grain g)
abstract Map<String,DbIndexInfo>
DBAdaptor. getIndices(Connection conn, Grain g)
Returns a set of indices referring to tables specified in the indicated grain.Map<String,DbIndexInfo>
FirebirdAdaptor. getIndices(Connection conn, Grain g)
Map<String,DbIndexInfo>
H2Adaptor. getIndices(Connection conn, Grain g)
Map<String,DbIndexInfo>
MSSQLAdaptor. getIndices(Connection conn, Grain g)
Map<String,DbIndexInfo>
OraAdaptor. getIndices(Connection conn, Grain g)
Map<String,DbIndexInfo>
PostgresAdaptor. getIndices(Connection conn, Grain g)
abstract List<String>
DBAdaptor. getParameterizedViewList(Connection conn, Grain g)
Get names of existing parameterized views.List<String>
FirebirdAdaptor. getParameterizedViewList(Connection conn, Grain g)
List<String>
H2Adaptor. getParameterizedViewList(Connection conn, Grain g)
List<String>
MSSQLAdaptor. getParameterizedViewList(Connection conn, Grain g)
List<String>
OraAdaptor. getParameterizedViewList(Connection conn, Grain g)
List<String>
PostgresAdaptor. getParameterizedViewList(Connection conn, Grain g)
List<String>
DBAdaptor. getViewList(Connection conn, Grain g)
Returns list of view names in the grain.List<String>
FirebirdAdaptor. getViewList(Connection conn, Grain g)
List<String>
OraAdaptor. getViewList(Connection conn, Grain g)
-
Uses of Grain in ru.curs.celesta.dbutils.adaptors.ddl
Methods in ru.curs.celesta.dbutils.adaptors.ddl with parameters of type Grain Modifier and Type Method Description void
DdlAdaptor. dropIndex(Connection conn, Grain g, DbIndexInfo dBIndexInfo)
Drops index of a grain. -
Uses of Grain in ru.curs.celesta.score
Methods in ru.curs.celesta.score that return Grain Modifier and Type Method Description Grain
AbstractScore. getGrain(String name)
Returns grain by its name.Grain
GrainElement. getGrain()
Returns grain that the element belongs to.Grain
TableElement. getGrain()
Returns grain that the table element belongs to.Grain
CelestaParser. parseGrainPart(GrainPart grainPart)
Methods in ru.curs.celesta.score that return types with arguments of type Grain Modifier and Type Method Description Map<String,Grain>
AbstractScore. getGrains()
Returns an unmodifiable grain set.Methods in ru.curs.celesta.score with parameters of type Grain Modifier and Type Method Description String
CelestaParser. constraint(Grain g)
void
CelestaSerializer. save(Grain grain)
Serializes grain to its CelestaSQL representation.void
GrainSaver. save(Grain grain, Resource scorePath)
Saves grain to file(s).Constructors in ru.curs.celesta.score with parameters of type Grain Constructor Description GrainPart(Grain grain, boolean isDefinition, Resource source)
-