Example usage for java.lang UnsupportedOperationException UnsupportedOperationException

List of usage examples for java.lang UnsupportedOperationException UnsupportedOperationException

Introduction

In this page you can find the example usage for java.lang UnsupportedOperationException UnsupportedOperationException.

Prototype

public UnsupportedOperationException(Throwable cause) 

Source Link

Document

Constructs a new exception with the specified cause and a detail message of (cause==null ?

Usage

From source file:net.drgnome.virtualpack.util.ProxyList.java

public void add(int n, E e) {
        throw new UnsupportedOperationException("Inventory has fixed size");
    }

From source file:apriori.ItemSet.java

public ArrayList<ItemSet<T>> getKMinusOneSubsets() {
    if (_items.size() <= 1)
        throw new UnsupportedOperationException("Cannot get subsets for 1-itemsets");
    ArrayList<ItemSet<T>> subsets = new ArrayList<>();
    for (int i = 0; i < _items.size(); i++) {
        ItemSet<T> subset = new ItemSet<T>();
        for (int j = 0; j < _items.size(); j++) {
            if (j == i)
                continue;
            subset.add(_items.get(j));//  w  w  w .j ava  2 s.co m
        }
        subsets.add(subset);
    }
    return subsets;
}

From source file:im.dadoo.cas.server.dao.BaseDao.java

public void deleteById(Serializable id) {
    throw new UnsupportedOperationException("Not supported yet.");
}

From source file:com.yahoo.elide.utils.coerce.converters.EpochToDateConverter.java

@Override
public <T> T convert(Class<T> cls, Object value) {
    try {/* w ww .j a  v a  2s .  co m*/
        if (ClassUtils.isAssignable(value.getClass(), String.class)) {
            return stringToDate(cls, (String) value);
        } else if (ClassUtils.isAssignable(value.getClass(), Long.class, true)) {
            return longToDate(cls, (Long) value);
        } else {
            throw new UnsupportedOperationException(value.getClass().getSimpleName() + " is not a valid epoch");
        }
    } catch (IndexOutOfBoundsException | ReflectiveOperationException | UnsupportedOperationException
            | IllegalArgumentException e) {
        throw new InvalidAttributeException("Unknown " + cls.getSimpleName() + " value " + value, e);
    }
}

From source file:ch.iceage.icedms.persistence.jdbc.query.impl.DefaultMimeTypeQueries.java

@Override
public String get(MimeType criteria) {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

From source file:ch.iceage.icedms.persistence.jdbc.query.impl.DefaultIndexTypeQueries.java

@Override
public String getAll(IndexType criteria) {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

From source file:com.example.security.UserAuthentication.java

@Override
public Object getCredentials() {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

From source file:com.olegchir.wicket_spring_security_example.init.UserAuthenticatedWebSession.java

@Override
public boolean authenticate(String username, String password) {
    throw new UnsupportedOperationException("You are supposed to use Spring-Security!");
}

From source file:bfkltd.formulations.springDataJPA.InciServiceImpl.java

@Override
public void update(Inci inci) {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

From source file:fr.esecure.banking.impl.IEsecureDaoRapportParamImpl.java

public <S extends RapportParam> Iterable<S> save(Iterable<S> itrbl) {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}