Example usage for org.apache.commons.lang NotImplementedException NotImplementedException

List of usage examples for org.apache.commons.lang NotImplementedException NotImplementedException

Introduction

In this page you can find the example usage for org.apache.commons.lang NotImplementedException NotImplementedException.

Prototype

public NotImplementedException() 

Source Link

Document

Constructs a new NotImplementedException with default message.

Usage

From source file:fr.itldev.koya.services.impl.SpaceServiceImpl.java

@Override
public void disable(User user, Space space) throws AlfrescoServiceException {
    throw new NotImplementedException();
}

From source file:com.amalto.core.query.user.VisitorAdapter.java

@Override
public T visit(GroupSize groupSize) {
    throw new NotImplementedException();
}

From source file:com.opengamma.analytics.financial.model.option.DistributionFromImpliedVolatility.java

@Override
public double nextRandom() {
    throw new NotImplementedException();
}

From source file:blue.lapis.pore.impl.entity.PoreEnderman.java

@Override
public void setCarriedMaterial(MaterialData material) {
    BlockType type = MaterialConverter.asBlock(material.getItemType());
    if (type != null) {
        //getHandle().setCarriedBlock(type); //TODO: not sure of how to create the block state
        throw new NotImplementedException();
    } else {/*from  w w  w .jav a2  s  . c  o m*/
        throw new UnsupportedOperationException();
    }
}

From source file:com.antsdb.saltedfish.sql.ExternalTable.java

public static <T> ExternalTable wrap(Orca orca, String namespace, Class<T> klass, Iterable<T> iterable) {
    ClassBasedTable<T> table = new ClassBasedTable<>();
    table.source = iterable;//from   w  w  w .  j a v a  2s  .c  om
    table.meta.setNamespace(namespace).setTableName(iterable.getClass().getSimpleName());
    List<ColumnMeta> columns = new ArrayList<>();
    for (Field i : klass.getFields()) {
        ColumnMeta column = new ColumnMeta(orca.getTypeFactory(), new SlowRow(0));
        column.setColumnName(i.getName()).setId(table.meta.getColumns().size());
        if (i.getType() == String.class) {
            column.setType(DataType.varchar());
        } else if (i.getType() == int.class) {
            column.setType(DataType.integer());
        } else if (i.getType() == long.class) {
            column.setType(DataType.longtype());
        } else {
            throw new NotImplementedException();
        }
        columns.add(column);
        table.fields.add(i);
    }
    table.meta.setColumns(columns);
    return table;
}

From source file:ar.com.zauber.commons.moderation.model.EnumModerationState.java

/** @see Persistible#setId(java.lang.Long) */
public void setId(final Long anId) {
    throw new NotImplementedException();
}

From source file:com.jaspersoft.jasperserver.remote.resources.validation.ErrorsAdapter.java

@Override
public Object getFieldValue(String field) {
    throw new NotImplementedException();
}

From source file:com.thoughtworks.studios.journey.jql.conditions.IntValue.java

@Override
public Value minus(Value right) {
    if (right instanceof IntValue) {
        return new IntValue(val - ((IntValue) right).val);
    }/*from  w  w w .j  av  a  2 s  .c o  m*/

    if (right instanceof FloatValue) {
        return new FloatValue(val - ((FloatValue) right).val);
    }

    if (right instanceof StringValue) {
        throw new DataQueryError("cannot minus string value from an integer value");
    }

    throw new NotImplementedException();
}

From source file:com.opengamma.analytics.financial.greeks.AbstractGreekVisitor.java

@Override
public T visitVanna() {
    throw new NotImplementedException();
}

From source file:com.bloatit.model.visitor.AbstractModelClassVisitor.java

@Override
public T visit(final BankTransaction model) {
    throw new NotImplementedException();
}