Interface IVersionData
-
- All Superinterfaces:
com4j.Com4jObject
public interface IVersionData extends com4j.Com4jObject
For HP use. The version data of an entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
checkedInBy()
The user name of the user who performed the check-in.String
checkedOutBy()
The user name of the user who performed the check-out.String
checkInComment()
The check-in comment.Object
checkInDate()
The check-in date according to the server clock.String
checkOutComment()
The check-out comment.Object
checkOutDate()
The check-out date according to the server clock.boolean
isCheckedOut()
Checks whether this version is checked out for editing.boolean
isCurrent()
Checks whether this is the latest checked-in version.int
versionNumber()
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
-
-