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 java.lang.String
checkedInBy()
The user name of the user who performed the check-in.java.lang.String
checkedOutBy()
The user name of the user who performed the check-out.java.lang.String
checkInComment()
The check-in comment.java.lang.Object
checkInDate()
The check-in date according to the server clock.java.lang.String
checkOutComment()
The check-out comment.java.lang.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
java.lang.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
java.lang.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
java.lang.String checkInComment()
The check-in comment.
Getter method for the COM property "CheckInComment"
- Returns:
- Returns a value of type java.lang.String
-
checkOutComment
java.lang.String checkOutComment()
The check-out comment.
Getter method for the COM property "CheckOutComment"
- Returns:
- Returns a value of type java.lang.String
-
checkedInBy
java.lang.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
java.lang.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
-
-