Interface IVersionData
-
- All Superinterfaces:
com4j.Com4jObject
public interface IVersionData extends com4j.Com4jObjectFor HP use. The version data of an entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringcheckedInBy()The user name of the user who performed the check-in.StringcheckedOutBy()The user name of the user who performed the check-out.StringcheckInComment()The check-in comment.ObjectcheckInDate()The check-in date according to the server clock.StringcheckOutComment()The check-out comment.ObjectcheckOutDate()The check-out date according to the server clock.booleanisCheckedOut()Checks whether this version is checked out for editing.booleanisCurrent()Checks whether this is the latest checked-in version.intversionNumber()The version number.
-
-
-
Method Detail
-
versionNumber
int versionNumber()
The version number.
Getter method for the COM property "VersionNumber"
- Returns:
- Returns a value of type int
-
checkInDate
Object checkInDate()
The check-in date according to the server clock.
Getter method for the COM property "CheckInDate"
- Returns:
- Returns a value of type java.lang.Object
-
checkOutDate
Object checkOutDate()
The check-out date according to the server clock.
Getter method for the COM property "CheckOutDate"
- Returns:
- Returns a value of type java.lang.Object
-
checkInComment
String checkInComment()
The check-in comment.
Getter method for the COM property "CheckInComment"
- Returns:
- Returns a value of type java.lang.String
-
checkOutComment
String checkOutComment()
The check-out comment.
Getter method for the COM property "CheckOutComment"
- Returns:
- Returns a value of type java.lang.String
-
checkedInBy
String checkedInBy()
The user name of the user who performed the check-in.
Getter method for the COM property "CheckedInBy"
- Returns:
- Returns a value of type java.lang.String
-
checkedOutBy
String checkedOutBy()
The user name of the user who performed the check-out.
Getter method for the COM property "CheckedOutBy"
- Returns:
- Returns a value of type java.lang.String
-
isCheckedOut
boolean isCheckedOut()
Checks whether this version is checked out for editing.
Getter method for the COM property "IsCheckedOut"
- Returns:
- Returns a value of type boolean
-
isCurrent
boolean isCurrent()
Checks whether this is the latest checked-in version.
Getter method for the COM property "IsCurrent"
- Returns:
- Returns a value of type boolean
-
-