Package net.sf.joafip.store.entity.objectio

Examples of net.sf.joafip.store.entity.objectio.EnumObjectOutput


      throws ObjectIOException {
    IObjectOutput objectOutput;
    if (classInfo.isUseSpecificObjectIO()) {
      objectOutput = specificObjectOutputMap.get(classInfo);
    } else {
      final EnumObjectOutput enumObjectOutput;
      try {
        enumObjectOutput = classInfo.getObjectOutput();
      } catch (final ClassInfoException exception) {
        throw new ObjectIOException(exception);
      }
      assert assertNotSpecificObjectOutput(enumObjectOutput);
      objectOutput = objectOutputs[enumObjectOutput.ordinal()];
    }
    return objectOutput;
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.store.entity.objectio.EnumObjectOutput

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.