Oracle Corporation

Uses of Class
com.bea.wlcp.wlng.api.storage.configuration.InvalidTypeException

Packages that use InvalidTypeException
com.bea.wlcp.wlng.api.storage.configuration   
 

Uses of InvalidTypeException in com.bea.wlcp.wlng.api.storage.configuration
 

Methods in com.bea.wlcp.wlng.api.storage.configuration that throw InvalidTypeException
 Boolean ConfigurationStore.getBoolean(String key)
          Get Boolean value for a certain key.
 Serializable ConfigurationStore.getSerializable(String key)
          Get Serializable value for a certain key.
 Integer ConfigurationStore.getInteger(String key)
          Get Integer value for a certain key.
 Long ConfigurationStore.getLong(String key)
          Get Long value for a certain key.
 String ConfigurationStore.getString(String key)
          Get String value for a certain key.
 void ConfigurationStore.initialize(String key, Boolean defaultValue)
          Initialize key to specified default value of Boolean type.
 void ConfigurationStore.initialize(String key, Serializable defaultValue)
          Initialize key to specified default value of Serializable type.
 void ConfigurationStore.initialize(String key, Integer defaultValue)
          Initialize key to specified default value of Integer type.
 void ConfigurationStore.initialize(String key, Long defaultValue)
          Initialize key to specified default value of Long type.
 void ConfigurationStore.initialize(String key, String defaultValue)
          Initialize key to specified default value of String type.
 void ConfigurationStore.setBoolean(String key, Boolean value)
          Set value for a certain key.
 void ConfigurationStore.setSerializable(String key, Serializable value)
          Set Serializable value for a certain key.
 void ConfigurationStore.setInteger(String key, Integer value)
          Set value for a certain key.
 void ConfigurationStore.setLong(String key, Long value)
          Set value for a certain key.
 void ConfigurationStore.setString(String key, String value)
          Set value for a certain key.
 


Oracle Corporation