Package au.net.causal.projo.prefs

Examples of au.net.causal.projo.prefs.UnsupportedDataTypeException


  @Override
  protected <T> void putValueImpl(String key, T value, PreferenceKeyMetadata<T> metadata) throws UnsupportedDataTypeException, PreferencesException
  {
    if (!isDataTypeSupported(metadata))
      throw new UnsupportedDataTypeException(metadata.getDataType());
   
    putNativeValue(key, valueDataType.cast(value));
  }
View Full Code Here


  @Override
  protected <T> void removeValueImpl(String key, PreferenceKeyMetadata<T> metadata) throws UnsupportedDataTypeException, PreferencesException
  {
    if (!isDataTypeSupported(metadata))
      throw new UnsupportedDataTypeException(metadata.getDataType());
   
    keyValueMap.remove(key);
  }
View Full Code Here

TOP

Related Classes of au.net.causal.projo.prefs.UnsupportedDataTypeException

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.