本文整理汇总了Java中org.hibernate.type.SingleColumnType类的典型用法代码示例。如果您正苦于以下问题:Java SingleColumnType类的具体用法?Java SingleColumnType怎么用?Java SingleColumnType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SingleColumnType类属于org.hibernate.type包,在下文中一共展示了SingleColumnType类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getLiteralValue
import org.hibernate.type.SingleColumnType; //导入依赖的package包/类
public Object getLiteralValue() {
String text = getText();
if ( getType() == QUOTED_STRING ) {
text = text.substring( 1, text.length() -1 );
}
final Type inherentType = getDataType();
if ( inherentType == null ) {
return text;
}
return ( (SingleColumnType) inherentType ).fromStringValue( text );
}
开发者ID:lamsfoundation,项目名称:lams,代码行数:14,代码来源:LiteralNode.java
示例2: constructQuery
import org.hibernate.type.SingleColumnType; //导入依赖的package包/类
@SuppressWarnings("unchecked")
protected TypedQuery<Serializable> constructQuery(DynamicEntityDao dynamicEntityDao, String ceilingEntity, List<FilterMapping> filterMappings, boolean isCount, boolean isMax, Integer firstResult, Integer maxResults, String maxField) {
CriteriaBuilder criteriaBuilder = dynamicEntityDao.getStandardEntityManager().getCriteriaBuilder();
Class<Serializable> ceilingMarker;
try {
ceilingMarker = (Class<Serializable>) Class.forName(ceilingEntity);
} catch (ClassNotFoundException e) {
throw new RuntimeException(e);
}
Class<Serializable> securityRoot = rowSecurityService.getFetchRestrictionRoot(adminSecurityService.getPersistentAdminUser(), ceilingMarker, filterMappings);
if (securityRoot != null) {
ceilingMarker = securityRoot;
}
Class<Serializable> ceilingClass = determineRoot(dynamicEntityDao, ceilingMarker, filterMappings);
CriteriaQuery<Serializable> criteria = criteriaBuilder.createQuery(ceilingMarker);
Root<Serializable> original = criteria.from(ceilingClass);
if (isCount) {
criteria.select(criteriaBuilder.count(original));
} else if (isMax) {
criteria.select(criteriaBuilder.max((Path<Number>) ((Object) original.get(maxField))));
} else {
criteria.select(original);
}
List<Predicate> restrictions = new ArrayList<Predicate>();
List<Order> sorts = new ArrayList<Order>();
addRestrictions(ceilingEntity, filterMappings, criteriaBuilder, original, restrictions, sorts, criteria);
criteria.where(restrictions.toArray(new Predicate[restrictions.size()]));
if (!isCount && !isMax) {
criteria.orderBy(sorts.toArray(new Order[sorts.size()]));
//If someone provides a firstResult value, then there is generally pagination going on.
//In order to produce consistent results, especially with certain databases such as PostgreSQL,
//there has to be an "order by" clause. We'll add one here if we can.
if (firstResult != null && sorts.isEmpty()) {
Map<String, Object> idMetaData = dynamicEntityDao.getIdMetadata(ceilingClass);
if (idMetaData != null) {
Object idFldName = idMetaData.get("name");
Object type = idMetaData.get("type");
if ((idFldName instanceof String) && (type instanceof SingleColumnType)) {
criteria.orderBy(criteriaBuilder.asc(original.get((String) idFldName)));
}
}
}
}
TypedQuery<Serializable> response = dynamicEntityDao.getStandardEntityManager().createQuery(criteria);
if (!isCount && !isMax) {
addPaging(response, firstResult, maxResults);
}
return response;
}
开发者ID:passion1014,项目名称:metaworks_framework,代码行数:59,代码来源:CriteriaTranslatorImpl.java
示例3: AbstractImmutableMaterializedPrimitiveValueUserType
import org.hibernate.type.SingleColumnType; //导入依赖的package包/类
public AbstractImmutableMaterializedPrimitiveValueUserType(SingleColumnType<P> delegateType) {
super();
this.delegateType = delegateType;
}
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:5,代码来源:AbstractImmutableMaterializedPrimitiveValueUserType.java
示例4: getHibernateType
import org.hibernate.type.SingleColumnType; //导入依赖的package包/类
SingleColumnType<? super J> getHibernateType();
开发者ID:JadiraOrg,项目名称:jadira,代码行数:2,代码来源:ColumnMapper.java
注:本文中的org.hibernate.type.SingleColumnType类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论