package org.eclipse.jgit.lib;

Parsed information about a checkout.
Since:3.0
/** * Parsed information about a checkout. * * @since 3.0 */
public interface CheckoutEntry {
Get the name of the branch before checkout
Returns:the name of the branch before checkout
/** * Get the name of the branch before checkout * * @return the name of the branch before checkout */
String getFromBranch();
Get the name of the branch after checkout
Returns:the name of the branch after checkout
/** * Get the name of the branch after checkout * * @return the name of the branch after checkout */
String getToBranch(); }