Package org.openhab.core.items

Examples of org.openhab.core.items.ItemNotUniqueException


    if(items.isEmpty()) {
      throw new ItemNotFoundException(name);
    }
   
    if(items.size()>1) {
      throw new ItemNotUniqueException(name, items);
    }
   
    return items.iterator().next();
   
  }
View Full Code Here

TOP

Related Classes of org.openhab.core.items.ItemNotUniqueException

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.