Package com.perforce.p4java.core
Interface IStreamIntegrationLog
-
- All Known Implementing Classes:
StreamIntegrationLog
public interface IStreamIntegrationLogStreamIntegrationLog is typically returned from the server as part of the streamlog command. It carries integration/branching data for perforce Stream spec
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetEndFromChange()Returns the ending change of the to stream spec.java.lang.StringgetField()Returns field.java.lang.StringgetHow()Returns integration method: variations on merge/branch/copy/ignore/delete.java.lang.StringgetStartFromChange()Returns the starting change of the from stream spec.java.lang.StringgetStream()Returns String associated with the integration.
-
-
-
Method Detail
-
getHow
java.lang.String getHow()
Returns integration method: variations on merge/branch/copy/ignore/delete. For example "branch from".- Returns:
- Integration type.
-
getStream
java.lang.String getStream()
Returns String associated with the integration.- Returns:
- Stream path.
-
getField
java.lang.String getField()
Returns field.- Returns:
- field
-
getStartFromChange
java.lang.String getStartFromChange()
Returns the starting change of the from stream spec.- Returns:
- start from change
-
getEndFromChange
java.lang.String getEndFromChange()
Returns the ending change of the to stream spec.- Returns:
- end from change
-
-