Package net.sf.joafip.entity

Examples of net.sf.joafip.entity.EnumStoreMode


  private void addStoreMode(
      final FilePersistenceProperties filePersistenceProperties,
      final String pathClassName, final String value)
      throws FilePersistenceException {
    final EnumStoreMode storeMode = EnumStoreMode.forValue(value);
    if (storeMode == null) {
      throw new FilePersistenceException(
          "bad value "
              + value
              + ", expected "
View Full Code Here


  private ClassInfo createClassInfoOfExistingClass(final Class<?> clazz,
      final String className) throws ClassInfoException {
    try {
      final ClassInfo classInfo;
      final EnumStoreMode storeMode = getStoreMode(clazz);
      classInfo = new ClassInfo(clazz, storeMode, this,
          conversionManager, currentDataModelIdentifier);
      classInfoMap.put(className, classInfo);
      if (getNotStorable(clazz)) {
        classInfo.setNotStorable();
View Full Code Here

          + className, exception);
    }
  }

  private EnumStoreMode getStoreMode(final Class<?> clazz) {
    final EnumStoreMode storeMode;
    if (storeModeMap == null) {
      storeMode = null;
    } else {
      final String className = clazz.getName();
      final Entry<String, EnumStoreMode> entry =
View Full Code Here

TOP

Related Classes of net.sf.joafip.entity.EnumStoreMode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.