| java.lang.Object simpleorm.core.SUte
SUte | public class SUte (Code) | | Miscellaneous static utility methods that have
nowhere else to live.
|
Method Summary | |
public static String | arrayToString(Object array) Makes a string out of elements of an array for tracing. | public static String | cleanClass(Class cls) Pretty class names without package prefixes etc. | public static boolean | inBitSet(long bitSet, long element, long setType) Depricated!
` True if element is in bitSet . | public static String | simpleormVersion() The SimpleORM Version. |
arrayToString | public static String arrayToString(Object array)(Code) | | Makes a string out of elements of an array for tracing.
If array is not an object just toString it.
|
cleanClass | public static String cleanClass(Class cls)(Code) | | Pretty class names without package prefixes etc.
|
inBitSet | public static boolean inBitSet(long bitSet, long element, long setType)(Code) | | Depricated!
` True if element is in bitSet . Throws
exception if lower short does not match the setType
indicating mismatched flags.
|
simpleormVersion | public static String simpleormVersion()(Code) | | The SimpleORM Version. Major.Minor. Guaranteed upward
compatibility within all major versions (except 00.*!).
Guaranteed that these will sort properly, hence leading
zeros.
Is not a constant because Java will copy the
constant into any dependent modules !!!
|
|
|