DbtuTools project
Java Library

Uses of Class
org.edelbyte.util.UnknownValueException

Packages that use UnknownValueException
org.dbtutools.DbtuTools.core Contains the DbtuTools framework related core classes. 
org.dbtutools.DbtuTools.core.db2 Contains the DB2 related core classes. 
org.dbtutools.DbtuTools.core.os Contains the Operating System related core classes. 
org.edelbyte.util Provides generic classes and services, which are used by other EdelByte.org projects too. 
 

Uses of UnknownValueException in org.dbtutools.DbtuTools.core
 

Methods in org.dbtutools.DbtuTools.core that throw UnknownValueException
static int ApiWrapper.getEndianType()
          Detects and returns the endian type of the current running platform.
protected  void ConfigService.getConfigSourceSettings()
          This method determines how to find and read the Config Sources.
 void ConfigService.refresh(boolean bInstanceFlag)
          As the name says, the method (re)reads the Config Sources and stores all found properties in the corresponding object fields.

Please notice, that this method covers the Config Source for the DB2 Instance only.
 void ConfigService.refresh(boolean bInstanceFlag, java.lang.String oDatabaseName)
          As the name says, the method (re)reads the Config Sources and stores all found properties in the corresponding object fields.
 void ConfigService.refresh(boolean bInstanceFlag, java.lang.String[] oDatabaseNames)
          As the name says, the method (re)reads the Config Sources and stores all found properties in the corresponding object fields.
 void ConfigService.refreshAll()
          As the name says, the method (re)reads all Config Sources and stores all found properties in the corresponding object fields.
static OptDbtuToolsTree OptDbtuToolsTree.getInstance()
          Creates and returns an instance of this class which addresses the /opt/dbtutools tree for the current DB2 Instance.
 

Constructors in org.dbtutools.DbtuTools.core that throw UnknownValueException
ConfigService()
          Creates a new instance of this class which addresses the current DB2 Instance, but no DB2 database(s).
ConfigService(java.lang.String oInstanceName)
          Creates a new instance of this class which addresses the given DB2 Instance, but no DB2 database(s).
ConfigService(java.lang.String oInstanceName, java.lang.String oDatabaseName)
          Creates a new instance of this class which addresses the given DB2 Instance, as well as the given DB2 database.
ConfigService(java.lang.String oInstanceName, java.lang.String[] oDatabaseNames)
          Creates a new instance of this class which addresses the given DB2 Instance, as well as the given DB2 database(s).
OptDbtuToolsTree()
          Creates a new instance of this class and addresses the /opt/dbtutools tree for the current DB2 Instance.
OptDbtuToolsTree(java.lang.String oDb2InstanceName)
          Creates a new instance of this class and addresses the /opt/dbtutools tree for the given DB2 Instance name.
OptDbtuToolsTree(Instance oDb2Instance)
          Creates a new instance of this class and addresses the /opt/dbtutools tree for the given DB2 Instance.
 

Uses of UnknownValueException in org.dbtutools.DbtuTools.core.db2
 

Methods in org.dbtutools.DbtuTools.core.db2 that throw UnknownValueException
static Instance Instance.getInstance()
          Creates and returns an instance of this class which addresses the current DB2 Instance.
 

Constructors in org.dbtutools.DbtuTools.core.db2 that throw UnknownValueException
Instance()
          Creates a new instance of this class and addressed the current DB2 Instance.

Background: This constructor calls a private method which interprets the value returned by java.lang.System.getProperty("DB2INSTANCE");
 

Uses of UnknownValueException in org.dbtutools.DbtuTools.core.os
 

Methods in org.dbtutools.DbtuTools.core.os that throw UnknownValueException
static java.io.File TempFile.createTempFile()
          Creates a File class instance, pointing to a newly created (empty) temporary file, which is located in the /opt/dbtutools tree.

Remark: The name of the temporary file is based on the following format: t<yyyymmddhhmmss>p<nnnn>n<n>.tmp The first token contains time and date; the next token represents the parent process id.
static int System.getEndianType()
          Detects and returns the endian type of the current running platform.

Background: The detection is done by calling the ApiWrapper.getEndianType() method.
static int System.getOsFamily()
          Detects and returns the operating system family.

Background: The detection is done by calling the System.getOsFamily() method.
static int System.getParentProcessId()
          Detects and returns the Parent Process ID (identifies the caller of the Java program).

Background: The detection is done by interpreting the value of java.lang.System.getProperty("PPID");
 

Uses of UnknownValueException in org.edelbyte.util
 

Methods in org.edelbyte.util that throw UnknownValueException
static int System.getOsFamily()
          Detects and returns the operating system family.

Background: The detection is done by interpreting the value of java.lang.System.getProperty("os.name");
 


DbtuTools project
Java Library