Package org.apache.lucene.store.bytebuffer

Examples of org.apache.lucene.store.bytebuffer.ByteBufferFile


        CustomByteBufferDirectory(ByteBufferAllocator allocator) {
            super(allocator);
        }

        public void renameTo(String from, String to) throws IOException {
            ByteBufferFile fromFile = files.get(from);
            if (fromFile == null)
                throw new FileNotFoundException(from);
            ByteBufferFile toFile = files.get(to);
            if (toFile != null) {
                files.remove(from);
            }
            files.put(to, fromFile);
        }
View Full Code Here

TOP

Related Classes of org.apache.lucene.store.bytebuffer.ByteBufferFile

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.