org.hibernate.search.util.logging.impl.Log.nullIsInvalidIndexedType()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(3.2k)|赞(0)|评价(0)|浏览(96)

本文整理了Java中org.hibernate.search.util.logging.impl.Log.nullIsInvalidIndexedType()方法的一些代码示例,展示了Log.nullIsInvalidIndexedType()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Log.nullIsInvalidIndexedType()方法的具体详情如下:
包路径:org.hibernate.search.util.logging.impl.Log
类名称:Log
方法名:nullIsInvalidIndexedType

Log.nullIsInvalidIndexedType介绍

暂无

代码示例

代码示例来源:origin: hibernate/hibernate-search

@Override
public IndexedTypeIdentifier keyFromName(String entityClassName) {
  if ( entityClassName == null ) {
    throw log.nullIsInvalidIndexedType();
  }
  IndexedTypeIdentifier id = name2keyMapping.get( entityClassName );
  if ( id == null ) {
    throw log.notAnIndexedType( entityClassName );
  }
  return id;
}

代码示例来源:origin: org.infinispan/infinispan-embedded-query

@Override
public IndexedTypeIdentifier keyFromName(String entityClassName) {
  if ( entityClassName == null ) {
    throw log.nullIsInvalidIndexedType();
  }
  IndexedTypeIdentifier id = name2keyMapping.get( entityClassName );
  if ( id == null ) {
    throw log.notAnIndexedType( entityClassName );
  }
  return id;
}

代码示例来源:origin: org.infinispan/infinispan-embedded-query

@Override
public IndexedTypeIdentifier keyFromPojoType(Class<?> clazz) {
  if ( clazz == null ) {
    throw log.nullIsInvalidIndexedType();
  }
  if ( clazz == Object.class ) {
    // Odd case: to handle existing semantics we need to be able to
    // identify the root Object even though we consider it's not included
    // in the maps.
    return ROOT_OBJECT;
  }
  return new PojoIndexedTypeIdentifier( clazz );
}

代码示例来源:origin: hibernate/hibernate-search

@Override
public IndexedTypeIdentifier keyFromPojoType(Class<?> clazz) {
  if ( clazz == null ) {
    throw log.nullIsInvalidIndexedType();
  }
  if ( clazz == Object.class ) {
    // Odd case: to handle existing semantics we need to be able to
    // identify the root Object even though we consider it's not included
    // in the maps.
    return ROOT_OBJECT;
  }
  return new PojoIndexedTypeIdentifier( clazz );
}

代码示例来源:origin: hibernate/hibernate-search

@Deprecated
public EntityIndexBinding getSafeIndexBindingForEntity(Class<?> entityType) {
  if ( entityType == null ) {
    throw log.nullIsInvalidIndexedType();
  }
  EntityIndexBinding entityIndexBinding = getIndexBindings().get( entityType );
  if ( entityIndexBinding == null ) {
    throw log.notAnIndexedType( entityType.getName() );
  }
  return entityIndexBinding;
}

代码示例来源:origin: org.infinispan/infinispan-embedded-query

@Deprecated
public EntityIndexBinding getSafeIndexBindingForEntity(Class<?> entityType) {
  if ( entityType == null ) {
    throw log.nullIsInvalidIndexedType();
  }
  EntityIndexBinding entityIndexBinding = getIndexBindings().get( entityType );
  if ( entityIndexBinding == null ) {
    throw log.notAnIndexedType( entityType.getName() );
  }
  return entityIndexBinding;
}

代码示例来源:origin: hibernate/hibernate-search

public EntityIndexBinding getSafeIndexBindingForEntity(IndexedTypeIdentifier type) {
  if ( type == null ) {
    throw log.nullIsInvalidIndexedType();
  }
  EntityIndexBinding entityIndexBinding = getIndexBinding( type );
  if ( entityIndexBinding == null ) {
    throw log.notAnIndexedType( type.getName() );
  }
  return entityIndexBinding;
}

代码示例来源:origin: org.infinispan/infinispan-embedded-query

public EntityIndexBinding getSafeIndexBindingForEntity(IndexedTypeIdentifier type) {
  if ( type == null ) {
    throw log.nullIsInvalidIndexedType();
  }
  EntityIndexBinding entityIndexBinding = getIndexBinding( type );
  if ( entityIndexBinding == null ) {
    throw log.notAnIndexedType( type.getName() );
  }
  return entityIndexBinding;
}

相关文章

微信公众号

最新文章

更多

Log类方法