Package org.voltdb.utils

Examples of org.voltdb.utils.NotImplementedException


        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }

    @Override
    protected void completeTransaction(EstimatorState state, Status status) {
        throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
    }
View Full Code Here


                return (ret);
            }

            @Override
            public void remove() {
                throw new NotImplementedException("Can't call remove! You crazy!");
            }
        };
        return (it);
       
        // TODO: We need to figure out how we want to read these entries
View Full Code Here

        stringer.key("ELEMENT_ID").value(this.getElementId());
    }
   
    @Override
    public void load(File input_path, Database catalog_db) throws IOException {
        throw new NotImplementedException("Cannot load a " + this.getClass().getSimpleName() + " from a file");
    }
View Full Code Here

        throw new NotImplementedException("Cannot load a " + this.getClass().getSimpleName() + " from a file");
    }
   
    @Override
    public void save(File output_path) throws IOException {
        throw new NotImplementedException("Cannot save a " + this.getClass().getSimpleName() + " to a file");
    }
View Full Code Here

        return false;
    }
   
    @Override
    public List<CountedStatement> getQueryEstimate(int partition) {
        throw new NotImplementedException(ClassUtil.getCurrentMethodName() + " is not implemented");
    }
View Full Code Here

    // UNIMPLEMENTED
    // --------------------------------------------------------------------------------------------

    @Override
    public boolean add(T e) {
        throw new NotImplementedException(this + " is a read-only Catalog object");
    }
View Full Code Here

        throw new NotImplementedException(this + " is a read-only Catalog object");
    }

    @Override
    public boolean addAll(Collection<? extends T> c) {
        throw new NotImplementedException(this + " is a read-only Catalog object");
    }
View Full Code Here

        throw new NotImplementedException(this + " is a read-only Catalog object");
    }

    @Override
    public void clear() {
        throw new NotImplementedException(this + " is a read-only Catalog object");
    }
View Full Code Here

        throw new NotImplementedException(this + " is a read-only Catalog object");
    }

    @Override
    public boolean remove(Object o) {
        throw new NotImplementedException(this + " is a read-only Catalog object");
    }
View Full Code Here

        throw new NotImplementedException(this + " is a read-only Catalog object");
    }

    @Override
    public boolean removeAll(Collection<?> c) {
        throw new NotImplementedException(this + " is a read-only Catalog object");
    }
View Full Code Here

TOP

Related Classes of org.voltdb.utils.NotImplementedException

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.