Enum TdbDefaultFunction
- java.lang.Object
-
- java.lang.Enum<TdbDefaultFunction>
-
- com.tietoenator.trip.jxp.database.TdbDefaultFunction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TdbDefaultFunction>
public enum TdbDefaultFunction extends java.lang.Enum<TdbDefaultFunction>
An enumeration of the possible function types that can be applied to fields (of the appropriate type) to serve as default values
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CommitDate
The default value should be the current date at the time of initial storageCommitTime
The default value should be the current time at the time of initial storageCommitTStamp
The default value should be the current date and time at the time of initial storageNoFunction
The normal state of a field is to have no default function at allUsername
The default value should be the user's TRIP username
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Return the TRIPxpi protocol name for the current function identifierstatic TdbDefaultFunction
getTypeof(java.lang.String name)
Retrieve the function ID that matches the provided namestatic TdbDefaultFunction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TdbDefaultFunction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NoFunction
public static final TdbDefaultFunction NoFunction
The normal state of a field is to have no default function at all
-
Username
public static final TdbDefaultFunction Username
The default value should be the user's TRIP username
-
CommitDate
public static final TdbDefaultFunction CommitDate
The default value should be the current date at the time of initial storage
-
CommitTime
public static final TdbDefaultFunction CommitTime
The default value should be the current time at the time of initial storage
-
CommitTStamp
public static final TdbDefaultFunction CommitTStamp
The default value should be the current date and time at the time of initial storage
-
-
Method Detail
-
values
public static TdbDefaultFunction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TdbDefaultFunction c : TdbDefaultFunction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TdbDefaultFunction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getTypeof
public static TdbDefaultFunction getTypeof(java.lang.String name)
Retrieve the function ID that matches the provided name- Parameters:
name
- The name to match- Returns:
- The function ID
-
getName
public java.lang.String getName()
Return the TRIPxpi protocol name for the current function identifier- Returns:
- The name
-
-