org.deduced
Class DeducedConstant

java.lang.Object
  extended by org.deduced.DeducedConstant

public class DeducedConstant
extends java.lang.Object

Deduced Constant

Author:
Steve McDuff

Field Summary
static int BUILD_VERSION
          differences in build versions indicate that no features were changed.
static int INDEX_NOT_FOUND
          index not found return value
static int MAJOR_FEATURE_VERSION
          Deduced major feature versions are used to indicate that new major features were added.
static int MAJOR_FRAMEWORK_VERSION
          Deduced framework major version.
static int MINOR_FEATURE_VERSION
          This number indicates that new minor features were added to the framework.
static java.lang.String VERSION
          Deduced framework version as a fully assembled string
 
Constructor Summary
DeducedConstant()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

INDEX_NOT_FOUND

public static final int INDEX_NOT_FOUND
index not found return value

See Also:
Constant Field Values

MAJOR_FRAMEWORK_VERSION

public static final int MAJOR_FRAMEWORK_VERSION
Deduced framework major version. Difference in the major version number indicate frameworks that aren't compatible with each other. Conversion is required to read older major versions.

See Also:
Constant Field Values

MAJOR_FEATURE_VERSION

public static final int MAJOR_FEATURE_VERSION
Deduced major feature versions are used to indicate that new major features were added. Those features will not be compatible with older versions of the deduced framework. This means that migrating from an older Major Feature Version to a newer Major feature version isn't reversible.

See Also:
Constant Field Values

MINOR_FEATURE_VERSION

public static final int MINOR_FEATURE_VERSION
This number indicates that new minor features were added to the framework. Minor features are upward and backward compatible and require no conversion.

See Also:
Constant Field Values

BUILD_VERSION

public static final int BUILD_VERSION
differences in build versions indicate that no features were changed. This is usually incremented when only code fix are applied.

See Also:
Constant Field Values

VERSION

public static final java.lang.String VERSION
Deduced framework version as a fully assembled string

See Also:
Constant Field Values
Constructor Detail

DeducedConstant

public DeducedConstant()