| Modifier and Type | Method and Description |
|---|---|
MField |
MFieldDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<MField> |
MFieldDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByColumnName(String... values)
Fetch records that have
COLUMN_NAME IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByColumnNameAsync(List<String> values)
Fetch records that have
COLUMN_NAME IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByColumnType(String... values)
Fetch records that have
COLUMN_TYPE IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByColumnTypeAsync(List<String> values)
Fetch records that have
COLUMN_TYPE IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByComments(String... values)
Fetch records that have
COMMENTS IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByCommentsAsync(List<String> values)
Fetch records that have
COMMENTS IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByEntityId(String... values)
Fetch records that have
ENTITY_ID IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByEntityIdAsync(List<String> values)
Fetch records that have
ENTITY_ID IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByFormat(String... values)
Fetch records that have
FORMAT IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByFormatAsync(List<String> values)
Fetch records that have
FORMAT IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByInComponent(String... values)
Fetch records that have
IN_COMPONENT IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByInComponentAsync(List<String> values)
Fetch records that have
IN_COMPONENT IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByIsNullable(Boolean... values)
Fetch records that have
IS_NULLABLE IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByIsNullableAsync(List<Boolean> values)
Fetch records that have
IS_NULLABLE IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByIsPrimary(Boolean... values)
Fetch records that have
IS_PRIMARY IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByIsPrimaryAsync(List<Boolean> values)
Fetch records that have
IS_PRIMARY IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByLength(Integer... values)
Fetch records that have
LENGTH IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByLengthAsync(List<Integer> values)
Fetch records that have
LENGTH IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByOutComponent(String... values)
Fetch records that have
OUT_COMPONENT IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByOutComponentAsync(List<String> values)
Fetch records that have
OUT_COMPONENT IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByPrecision(Integer... values)
Fetch records that have
PRECISION IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByPrecisionAsync(List<Integer> values)
Fetch records that have
PRECISION IN (values) asynchronously |
List<MField> |
MFieldDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<MField> |
MFieldDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<MField>> |
MFieldDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<MField> |
MFieldDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
MFieldDao.getId(MField object) |
| Constructor and Description |
|---|
MField(MField value) |
| Modifier and Type | Method and Description |
|---|---|
MField |
Schema.getField(String field) |
MField |
Schema.getFieldByColumn(String column) |
MField[] |
Schema.getFields() |
| Modifier and Type | Method and Description |
|---|---|
List<MField> |
Schema.getPrimaryKeys() |
| Constructor and Description |
|---|
AoAttribute(MAttribute attribute,
MField sourceField)
Create new AoService
|
| Modifier and Type | Method and Description |
|---|---|
DataMatrix |
DataMatrix.add(MField field,
MAttribute attribute) |
DataMatrix |
DataMatrix.add(MField field,
MAttribute attribute,
Object value) |
void |
DataTpl.initKey(Schema schema,
MField field,
MAttribute attribute) |
void |
DataTpl.initTpl(Schema schema,
MField field,
MAttribute attribute) |
| Modifier and Type | Method and Description |
|---|---|
CheckResult |
AoSentence.checkFieldType(MField field,
ConcurrentMap<String,Object> columnDetail) |
CheckResult |
AbstractSentence.checkFieldType(MField field,
ConcurrentMap<String,Object> columnDetail) |
String |
AoSentence.columnAdd(String tableName,
MField field) |
String |
AbstractSentence.columnAdd(String tableName,
MField field) |
String |
AoSentence.columnAlter(String tableName,
MField field) |
String |
AbstractSentence.columnAlter(String tableName,
MField field) |
String |
AoSentence.columnType(MField field) |
String |
AbstractSentence.columnType(MField field) |
int |
FieldComparator.compare(MField fieldOne,
MField fieldTwo)
排序不能返回0
|
protected String |
AbstractSentence.defineColumn(MField field) |
protected String |
AbstractSentence.defineSuffix(MField field,
String actualType) |
protected String |
AbstractSentence.getType(MField field)
类型定义
|
String |
AoSentence.segmentField(MField field) |
String |
AbstractSentence.segmentField(MField field)
生成列定义的SQL语句:
NAME VARCHAR(255) NOT NULL |
| Modifier and Type | Method and Description |
|---|---|
MField |
JsonSchema.getField(String field) |
MField |
JsonSchema.getFieldByColumn(String column) |
MField[] |
JsonSchema.getFields()
读取字段集合
|
| Modifier and Type | Method and Description |
|---|---|
List<MField> |
JsonSchema.getPrimaryKeys()
读取当前Schema中所有主键
|
Copyright © 2021. All rights reserved.