A B C D E F G H I J K L M N O P R S T U V W

A

AbstractCommand - Class in com.aragost.javahg.internals
Base class for the command classes.
AbstractCommand(Repository) - Constructor for class com.aragost.javahg.internals.AbstractCommand
 
AbstractCommand(Repository, String) - Constructor for class com.aragost.javahg.internals.AbstractCommand
 
AbstractCommand.State - Enum in com.aragost.javahg.internals
 
active() - Method in class com.aragost.javahg.commands.flags.BranchesCommandFlags
Set the --active command line flag.
add(String...) - Method in class com.aragost.javahg.WorkingCopy
 
AddCommand - Class in com.aragost.javahg.commands
Command class for executing hg add.
AddCommand(Repository) - Constructor for class com.aragost.javahg.commands.AddCommand
 
AddCommandFlags - Class in com.aragost.javahg.commands.flags
 
AddCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.AddCommandFlags
 
added() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --added command line flag.
addExtension(Class<? extends MercurialExtension>) - Method in class com.aragost.javahg.RepositoryConfiguration
 
AddRemoveCommand - Class in com.aragost.javahg.commands
Command class for executing hg addremove.
AddRemoveCommand(Repository) - Constructor for class com.aragost.javahg.commands.AddRemoveCommand
 
AddRemoveCommandFlags - Class in com.aragost.javahg.commands.flags
 
AddRemoveCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.AddRemoveCommandFlags
 
AddRemoveCommandHelper - Class in com.aragost.javahg.internals
Helper class to implement Add and Removed Command.
AddRemoveCommandHelper(AbstractCommand, String) - Constructor for class com.aragost.javahg.internals.AddRemoveCommandHelper
 
addToCommandLine(List<String>) - Method in class com.aragost.javahg.Repository
Add repository specific arguments to the hg command line for command execution
after() - Method in class com.aragost.javahg.commands.flags.CopyCommandFlags
Set the --after command line flag.
after() - Method in class com.aragost.javahg.commands.flags.RemoveCommandFlags
Set the --after command line flag.
after() - Method in class com.aragost.javahg.commands.flags.RenameCommandFlags
Set the --after command line flag.
all() - Method in class com.aragost.javahg.commands.flags.ManifestCommandFlags
Set the --all command line flag.
all() - Method in class com.aragost.javahg.commands.flags.ResolveCommandFlags
Set the --all command line flag.
all() - Method in class com.aragost.javahg.commands.flags.RevertCommandFlags
Set the --all command line flag.
all() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --all command line flag.
amend() - Method in class com.aragost.javahg.commands.flags.CommitCommandFlags
Set the --amend command line flag.
AnnotateCommand - Class in com.aragost.javahg.commands
Command class for executing hg annotate.
AnnotateCommand(Repository) - Constructor for class com.aragost.javahg.commands.AnnotateCommand
 
AnnotateCommandFlags - Class in com.aragost.javahg.commands.flags
 
AnnotateCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.AnnotateCommandFlags
 
AnnotateLine - Class in com.aragost.javahg.commands
An annotated line, holding the text of the line and the Changeset that introduced it.
AnnotateLine(Changeset, String) - Constructor for class com.aragost.javahg.commands.AnnotateLine
 
arrayConcat(T[], T[]) - Static method in class com.aragost.javahg.internals.Utils
Concatenate two arrays.
arrayUnshift(T, T[]) - Static method in class com.aragost.javahg.internals.Utils
Insert an element as the first to an array.
ask(String) - Method in class com.aragost.javahg.commands.ManifestMergeOracle
 
asRuntime(Throwable) - Static method in class com.aragost.javahg.internals.Utils
Convert the specified exception into a RuntimeException
available() - Method in class com.aragost.javahg.internals.BlockInputStream
 
available() - Method in class com.aragost.javahg.internals.OutputChannelInputStream
 

B

BackoutCommand - Class in com.aragost.javahg.commands
Command class for executing hg backout.
BackoutCommand(Repository) - Constructor for class com.aragost.javahg.commands.BackoutCommand
 
BackoutCommandFlags - Class in com.aragost.javahg.commands.flags
 
BackoutCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.BackoutCommandFlags
 
BackoutConflictResolvingContext - Class in com.aragost.javahg.merge
 
BackoutConflictResolvingContext(AbstractCommand, boolean) - Constructor for class com.aragost.javahg.merge.BackoutConflictResolvingContext
 
bad() - Method in class com.aragost.javahg.commands.flags.BisectCommandFlags
Set the --bad command line flag.
base(String) - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Deprecated. Using this flag has been deprecated in Mercurial. The flag wont go away, but there will typically be a better way to express the same thing.
BaseRepository - Class in com.aragost.javahg
This is a standard Repository with no bundle overlaid
BaseStatusLine<T extends Enum<?>> - Class in com.aragost.javahg.internals
 
BaseStatusLine() - Constructor for class com.aragost.javahg.internals.BaseStatusLine
 
basicChangeset(String) - Method in class com.aragost.javahg.Repository
 
BisectCommand - Class in com.aragost.javahg.commands
 
BisectCommand(Repository) - Constructor for class com.aragost.javahg.commands.BisectCommand
 
BisectCommandFlags - Class in com.aragost.javahg.commands.flags
 
BisectCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.BisectCommandFlags
 
BisectResult - Class in com.aragost.javahg.commands
 
BisectResult(String) - Constructor for class com.aragost.javahg.commands.BisectResult
 
BlockInputStream - Class in com.aragost.javahg.internals
An input stream reading one channel block.
BlockInputStream.InvalidStreamException - Exception in com.aragost.javahg.internals
Exception to indicate that channel and length could not be read from the underlying stream.
BlockInputStream.InvalidStreamException() - Constructor for exception com.aragost.javahg.internals.BlockInputStream.InvalidStreamException
 
Bookmark - Class in com.aragost.javahg
 
Bookmark(Changeset, String, boolean) - Constructor for class com.aragost.javahg.Bookmark
 
bookmark(String...) - Method in class com.aragost.javahg.commands.flags.PullCommandFlags
Set the --bookmark command line flag.
bookmark(String...) - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
Set the --bookmark command line flag.
bookmarks() - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --bookmarks command line flag.
bookmarks() - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --bookmarks command line flag.
BookmarksCommand - Class in com.aragost.javahg.commands
Command class for executing hg bookmarks.
BookmarksCommand(Repository) - Constructor for class com.aragost.javahg.commands.BookmarksCommand
 
BookmarksCommandFlags - Class in com.aragost.javahg.commands.flags
 
BookmarksCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.BookmarksCommandFlags
 
Branch - Class in com.aragost.javahg.commands
Represent a named branch returned by BranchesCommand
branch(String...) - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --branch command line flag.
branch(String...) - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --branch command line flag.
branch(String...) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --branch command line flag.
branch(String...) - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --branch command line flag.
branch(String...) - Method in class com.aragost.javahg.commands.flags.PullCommandFlags
Set the --branch command line flag.
branch(String...) - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
Set the --branch command line flag.
BranchCommand - Class in com.aragost.javahg.commands
Command class for executing hg branch.
BranchCommand(Repository) - Constructor for class com.aragost.javahg.commands.BranchCommand
 
BranchCommandFlags - Class in com.aragost.javahg.commands.flags
 
BranchCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.BranchCommandFlags
 
BranchesCommand - Class in com.aragost.javahg.commands
Command class for executing hg branches.
BranchesCommand(Repository) - Constructor for class com.aragost.javahg.commands.BranchesCommand
 
BranchesCommandFlags - Class in com.aragost.javahg.commands.flags
 
BranchesCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.BranchesCommandFlags
 
Bundle - Class in com.aragost.javahg
 
Bundle(BaseRepository, File) - Constructor for class com.aragost.javahg.Bundle
Create a new bundle.
Bundle(BaseRepository, File, boolean) - Constructor for class com.aragost.javahg.Bundle
Create a new bundle.
bundle(String) - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --bundle command line flag.
bundle(String) - Method in class com.aragost.javahg.commands.IncomingCommand
 
bypass() - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --bypass command line flag.
byteArrayValuedMap() - Method in class com.aragost.javahg.Changeset.Extra
 

C

cancel() - Method in class com.aragost.javahg.internals.AbstractCommand
Cancel a running command.
CancelledExecutionException - Exception in com.aragost.javahg.commands
 
CancelledExecutionException(AbstractCommand) - Constructor for exception com.aragost.javahg.commands.CancelledExecutionException
 
CatCommand - Class in com.aragost.javahg.commands
Command class for executing hg cat.
CatCommand(Repository) - Constructor for class com.aragost.javahg.commands.CatCommand
 
CatCommandFlags - Class in com.aragost.javahg.commands.flags
 
CatCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.CatCommandFlags
 
change(String) - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --change command line flag.
change(String) - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --change command line flag.
Changeset - Class in com.aragost.javahg
Represent data for a single changeset.
Changeset(Repository, String) - Constructor for class com.aragost.javahg.Changeset
Use Repository.changeset(String) to create Changesets
changeSet(String) - Method in class com.aragost.javahg.Repository
Deprecated. Use changeset instead.
changeset(String) - Method in class com.aragost.javahg.Repository
Return a Changeset object for the specified node id.
Changeset.Extra - Class in com.aragost.javahg
Class representing the extra dictionary Mercurial has for each changeset.
CHANGESET_EAGER_STYLE_PATH - Static variable in class com.aragost.javahg.Changeset
 
CHANGESET_STYLE_PATH - Static variable in class com.aragost.javahg.Changeset
Style file used among other with the log command to read changesets.
check() - Method in class com.aragost.javahg.commands.flags.UpdateCommandFlags
Set the --check command line flag.
clean() - Method in class com.aragost.javahg.commands.BranchCommand
Reset the branch name for working directory to branch name of first parent
clean() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --clean command line flag.
clean() - Method in class com.aragost.javahg.commands.flags.UpdateCommandFlags
Set the --clean command line flag.
clear() - Method in class com.aragost.javahg.commands.GraftCommand
 
clear() - Method in class com.aragost.javahg.internals.AbstractCommand
 
clone(RepositoryConfiguration, File, String) - Static method in class com.aragost.javahg.Repository
Clone an existing Mercurial repository.
clone(File, String) - Static method in class com.aragost.javahg.Repository
Clone an existing Mercurial repository.
CloneCommand - Class in com.aragost.javahg.commands
Command class for executing hg clone.
CloneCommand(Repository) - Constructor for class com.aragost.javahg.commands.CloneCommand
 
CloneCommandFlags - Class in com.aragost.javahg.commands.flags
 
CloneCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.CloneCommandFlags
 
cloneMercurialRepository(File, String, String) - Method in class com.aragost.javahg.internals.Server
Convenience method to clone a mercurial repository in a directory.
close() - Method in class com.aragost.javahg.Bundle
 
close() - Method in class com.aragost.javahg.Repository
Close the repository.
closeBranch() - Method in class com.aragost.javahg.commands.flags.CommitCommandFlags
Set the --close-branch command line flag.
closed() - Method in class com.aragost.javahg.commands.flags.BranchesCommandFlags
Set the --closed command line flag.
closed() - Method in class com.aragost.javahg.commands.flags.HeadsCommandFlags
Set the --closed command line flag.
cmdAppend(String) - Method in class com.aragost.javahg.internals.AbstractCommand
 
cmdAppend(String, String) - Method in class com.aragost.javahg.internals.AbstractCommand
 
cmdAppend(String, String[]) - Method in class com.aragost.javahg.internals.AbstractCommand
 
cmdAppend(String, int) - Method in class com.aragost.javahg.internals.AbstractCommand
 
cmdAppend(String, DateTime) - Method in class com.aragost.javahg.internals.AbstractCommand
 
com.aragost.javahg - package com.aragost.javahg
 
com.aragost.javahg.commands - package com.aragost.javahg.commands
 
com.aragost.javahg.commands.flags - package com.aragost.javahg.commands.flags
 
com.aragost.javahg.internals - package com.aragost.javahg.internals
 
com.aragost.javahg.log - package com.aragost.javahg.log
 
com.aragost.javahg.merge - package com.aragost.javahg.merge
 
command(String) - Method in class com.aragost.javahg.commands.flags.BisectCommandFlags
Set the --command command line flag.
commit() - Method in class com.aragost.javahg.merge.GraftContext
 
CommitCommand - Class in com.aragost.javahg.commands
Command class for executing hg commit.
CommitCommand(Repository) - Constructor for class com.aragost.javahg.commands.CommitCommand
 
CommitCommandFlags - Class in com.aragost.javahg.commands.flags
 
CommitCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.CommitCommandFlags
 
compareTo(Branch) - Method in class com.aragost.javahg.commands.Branch
 
compareTo(Tag) - Method in class com.aragost.javahg.commands.Tag
 
compareTo(HgVersion) - Method in class com.aragost.javahg.HgVersion
Compare this to the other version.
ConflictResolvingContext - Class in com.aragost.javahg.merge
Base class for a context where conflicts are resolved.
ConflictResolvingContext(AbstractCommand) - Constructor for class com.aragost.javahg.merge.ConflictResolvingContext
 
consumeAll() - Method in class com.aragost.javahg.internals.HgInputStream
Read until EOF and discard the bytes read
consumeAll(InputStream) - Static method in class com.aragost.javahg.internals.Utils
Read and discard everything from the specified InputStream
copies() - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --copies command line flag.
copies() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --copies command line flag.
CopyCommand - Class in com.aragost.javahg.commands
Command class for executing hg copy.
CopyCommand(Repository) - Constructor for class com.aragost.javahg.commands.CopyCommand
 
CopyCommandFlags - Class in com.aragost.javahg.commands.flags
 
CopyCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.CopyCommandFlags
 
CopyRenameHelper - Class in com.aragost.javahg.internals
 
CopyRenameHelper() - Constructor for class com.aragost.javahg.internals.CopyRenameHelper
 
create(String) - Method in class com.aragost.javahg.commands.BookmarksCommand
Create a new bookmark
create(RepositoryConfiguration, File) - Static method in class com.aragost.javahg.Repository
Create a new Mercurial repository and open a javahg Repository on it.
create(File) - Static method in class com.aragost.javahg.Repository
Create a new Mercurial repository.
createTempFile(String) - Static method in class com.aragost.javahg.internals.Utils
Create a temporary file.
crossedBranch() - Method in class com.aragost.javahg.commands.UpdateCommand
 
currentdate() - Method in class com.aragost.javahg.commands.flags.GraftCommandFlags
Set the --currentdate command line flag.
currentuser() - Method in class com.aragost.javahg.commands.flags.GraftCommandFlags
Set the --currentuser command line flag.

D

data - Variable in class com.aragost.javahg.Changeset
The actual data for the Changeset
date(String) - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Set the --date command line flag.
date(DateTime) - Method in class com.aragost.javahg.commands.flags.CommitCommandFlags
Set the --date command line flag.
date(String) - Method in class com.aragost.javahg.commands.flags.GraftCommandFlags
Set the --date command line flag.
date(String) - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --date command line flag.
date(String) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --date command line flag.
date(String) - Method in class com.aragost.javahg.commands.flags.RevertCommandFlags
Set the --date command line flag.
date(DateTime) - Method in class com.aragost.javahg.commands.flags.TagCommandFlags
Set the --date command line flag.
date(String) - Method in class com.aragost.javahg.commands.flags.UpdateCommandFlags
Set the --date command line flag.
DateTime - Class in com.aragost.javahg
Represents a timestamp and a timezone offset
DateTime(long, int) - Constructor for class com.aragost.javahg.DateTime
Construct a new DateTime with the specified timestamp and timezone
DateTime(Date, TimeZone) - Constructor for class com.aragost.javahg.DateTime
Construct a new DateTime with the specified date and timezone
DateTime(Date) - Constructor for class com.aragost.javahg.DateTime
Deprecated. Use constructor with tz argument
dateTimeUpTo(int) - Method in class com.aragost.javahg.internals.HgInputStream
Read a Mercurial date from the stream, stopping when a fixed byte is met.
debug(String) - Method in class com.aragost.javahg.log.JULLogger
 
debug(String, Object...) - Method in class com.aragost.javahg.log.JULLogger
 
debug(String, Throwable) - Method in class com.aragost.javahg.log.JULLogger
 
debug(String) - Method in interface com.aragost.javahg.log.Logger
Logs a debugging message - detailed debugging information that can be used for identifying problems without a debugger, e.g.
debug(String, Object...) - Method in interface com.aragost.javahg.log.Logger
Logs a debugging message - detailed debugging information that can be used for identifying problems without a debugger, e.g.
debug(String, Throwable) - Method in interface com.aragost.javahg.log.Logger
 
decimalIntUpTo(int) - Method in class com.aragost.javahg.internals.HgInputStream
Read a non-negative integer from the stream until a fixed byte is found.
decode() - Method in class com.aragost.javahg.commands.flags.CatCommandFlags
Set the --decode command line flag.
decodeBytes(byte[], CharsetDecoder) - Static method in class com.aragost.javahg.internals.Utils
Decode the bytes with the decoder
decrementRefCount() - Method in class com.aragost.javahg.internals.ServerPool
Decrement the refCount.
DEFAULT - Static variable in class com.aragost.javahg.RepositoryConfiguration
The default configuration, used in case no explicit configuration is given to a Repository
DEFAULT_ENCODING - Static variable in class com.aragost.javahg.RepositoryConfiguration
The default encoding for the repository
delete(String) - Method in class com.aragost.javahg.commands.BookmarksCommand
Delete a bookmark
delete(String) - Method in class com.aragost.javahg.commands.ManifestMergeOracle
 
delete() - Method in class com.aragost.javahg.merge.KeepDeleteConflict
 
deleted() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --deleted command line flag.
deleteTempDir(File) - Static method in class com.aragost.javahg.internals.Utils
Delete a directory in the system temporary directory (java.io.tmpdir).
DiffCommand - Class in com.aragost.javahg.commands
Command class for executing hg diff.
DiffCommand(Repository) - Constructor for class com.aragost.javahg.commands.DiffCommand
 
DiffCommandFlags - Class in com.aragost.javahg.commands.flags
 
DiffCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.DiffCommandFlags
 
doneHook() - Method in class com.aragost.javahg.commands.GraftCommand
 
doneHook() - Method in class com.aragost.javahg.internals.AbstractCommand
This method is called when the processing of a command is finished.
draft() - Method in class com.aragost.javahg.commands.flags.PhaseCommandFlags
Set the --draft command line flag.

E

EMPTY - Static variable in class com.aragost.javahg.internals.BlockInputStream
 
equals(Object) - Method in class com.aragost.javahg.Changeset
 
equals(Changeset) - Method in class com.aragost.javahg.Changeset
 
equals(Object) - Method in class com.aragost.javahg.commands.Tag
 
equals(Object) - Method in class com.aragost.javahg.DateTime
 
error(String) - Method in class com.aragost.javahg.log.JULLogger
 
error(String, Object...) - Method in class com.aragost.javahg.log.JULLogger
 
error(String, Throwable) - Method in class com.aragost.javahg.log.JULLogger
 
error(String) - Method in interface com.aragost.javahg.log.Logger
 
error(String, Object...) - Method in interface com.aragost.javahg.log.Logger
 
error(String, Throwable) - Method in interface com.aragost.javahg.log.Logger
 
exact() - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --exact command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.AddCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.CatCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.CommitCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.CopyCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.LocateCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.RemoveCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.RenameCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.ResolveCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.RevertCommandFlags
Set the --exclude command line flag.
exclude(String...) - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --exclude command line flag.
execute(String...) - Method in class com.aragost.javahg.commands.AddCommand
Execute the add command, and return list of files added.
execute(File...) - Method in class com.aragost.javahg.commands.AddCommand
 
execute() - Method in class com.aragost.javahg.commands.AddCommand
 
execute() - Method in class com.aragost.javahg.commands.AddRemoveCommand
 
execute(String) - Method in class com.aragost.javahg.commands.AnnotateCommand
Execute hg annotate for the specified file.
execute() - Method in class com.aragost.javahg.commands.BackoutCommand
Execute the backout.
execute() - Method in class com.aragost.javahg.commands.BisectCommand
Run hg bisect.
execute(String) - Method in class com.aragost.javahg.commands.BisectCommand
Run hg bisect.
execute() - Method in class com.aragost.javahg.commands.BranchesCommand
 
execute(String) - Method in class com.aragost.javahg.commands.CatCommand
 
execute(String) - Method in class com.aragost.javahg.commands.CloneCommand
Clone the current repository to another destination.
execute(String...) - Method in class com.aragost.javahg.commands.CommitCommand
Commit changes in the passed in files only
execute(File...) - Method in class com.aragost.javahg.commands.CommitCommand
 
execute() - Method in class com.aragost.javahg.commands.CommitCommand
Commit all changes
execute(String...) - Method in class com.aragost.javahg.commands.CopyCommand
 
execute(File...) - Method in class com.aragost.javahg.commands.CopyCommand
 
execute() - Method in class com.aragost.javahg.commands.DiffCommand
Run hg diff.
execute(String...) - Method in class com.aragost.javahg.commands.DiffCommand
Run hg diff on the files.
execute(File...) - Method in class com.aragost.javahg.commands.DiffCommand
Run hg diff on the files.
execute(String...) - Method in class com.aragost.javahg.commands.ExportCommand
Export a revision to a string.
execute(int...) - Method in class com.aragost.javahg.commands.ExportCommand
Export a revision to a string.
execute(Changeset) - Method in class com.aragost.javahg.commands.GraftCommand
Run hg graft with the specified revisions.
execute(String...) - Method in class com.aragost.javahg.commands.HeadsCommand
 
execute(String...) - Method in class com.aragost.javahg.commands.ImportCommand
Run hg import on the files.
execute(File...) - Method in class com.aragost.javahg.commands.ImportCommand
Run hg import on the files.
execute(String) - Method in class com.aragost.javahg.commands.IncomingCommand
 
execute(File) - Method in class com.aragost.javahg.commands.IncomingCommand
 
execute(Repository) - Method in class com.aragost.javahg.commands.IncomingCommand
 
execute(String...) - Method in class com.aragost.javahg.commands.LocateCommand
 
execute(String...) - Method in class com.aragost.javahg.commands.LogCommand
 
execute() - Method in class com.aragost.javahg.commands.ManifestCommand
 
execute(ManifestMergeOracle) - Method in class com.aragost.javahg.commands.MergeCommand
Perform the merge.
execute() - Method in class com.aragost.javahg.commands.MergeCommand
 
execute(String) - Method in class com.aragost.javahg.commands.OutgoingCommand
 
execute(File) - Method in class com.aragost.javahg.commands.OutgoingCommand
 
execute(Repository) - Method in class com.aragost.javahg.commands.OutgoingCommand
 
execute() - Method in class com.aragost.javahg.commands.ParentsCommand
 
execute(String) - Method in class com.aragost.javahg.commands.ParentsCommand
 
execute() - Method in class com.aragost.javahg.commands.PhaseCommand
 
execute() - Method in class com.aragost.javahg.commands.PullCommand
Run hg pull using the default path.
execute(String) - Method in class com.aragost.javahg.commands.PullCommand
Run hg pull source with an explicit source path.
execute() - Method in class com.aragost.javahg.commands.PushCommand
Run hg pull using the default path.
execute(String) - Method in class com.aragost.javahg.commands.PushCommand
Run hg push destination with an explicit destination path.
execute(String...) - Method in class com.aragost.javahg.commands.RemoveCommand
Execute the remove command, and return list of files removed.
execute(File...) - Method in class com.aragost.javahg.commands.RemoveCommand
Execute the remove command, and return list of files removed.
execute() - Method in class com.aragost.javahg.commands.RemoveCommand
 
execute(String...) - Method in class com.aragost.javahg.commands.RenameCommand
 
execute(File...) - Method in class com.aragost.javahg.commands.RenameCommand
 
execute(String...) - Method in class com.aragost.javahg.commands.ResolveCommand
 
execute() - Method in class com.aragost.javahg.commands.RevertCommand
Execute with no files.
execute(String...) - Method in class com.aragost.javahg.commands.RevertCommand
 
execute(File...) - Method in class com.aragost.javahg.commands.RevertCommand
 
execute() - Method in class com.aragost.javahg.commands.RollbackCommand
Rollback last transaction.
execute() - Method in class com.aragost.javahg.commands.RootCommand
 
execute() - Method in class com.aragost.javahg.commands.StatusCommand
 
execute(String...) - Method in class com.aragost.javahg.commands.StatusCommand
 
execute(File...) - Method in class com.aragost.javahg.commands.StatusCommand
 
execute(String...) - Method in class com.aragost.javahg.commands.TagCommand
Create new tags.
execute() - Method in class com.aragost.javahg.commands.TagsCommand
Return a map mapping tag names to changeset with the tag.
execute() - Method in class com.aragost.javahg.commands.UpdateCommand
Run hg update on a clean working copy.
execute(ManifestMergeOracle) - Method in class com.aragost.javahg.commands.UpdateCommand
Run hg update with a merge oracle.
execute() - Method in class com.aragost.javahg.commands.VersionCommand
Retrieve the Mercurial version number.
execute(String...) - Method in class com.aragost.javahg.internals.AddRemoveCommandHelper
 
execute(File...) - Method in class com.aragost.javahg.internals.AddRemoveCommandHelper
 
execute() - Method in class com.aragost.javahg.internals.AddRemoveCommandHelper
 
execute(String...) - Method in class com.aragost.javahg.internals.GenericCommand
 
executeContinue() - Method in class com.aragost.javahg.commands.GraftCommand
Execute the graft command with the continue flag.
executeReverse() - Method in class com.aragost.javahg.commands.TagsCommand
Return alternative mapping of changeset node hash to list of tags.
ExecutionException - Exception in com.aragost.javahg.commands
Generic exception thrown when executing a Mercurial command fails.
ExecutionException(AbstractCommand, String) - Constructor for exception com.aragost.javahg.commands.ExecutionException
 
ExecutionException(AbstractCommand) - Constructor for exception com.aragost.javahg.commands.ExecutionException
 
ExportCommand - Class in com.aragost.javahg.commands
Command class for executing hg export.
ExportCommand(Repository) - Constructor for class com.aragost.javahg.commands.ExportCommand
 
ExportCommandFlags - Class in com.aragost.javahg.commands.flags
 
ExportCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.ExportCommandFlags
 
extend() - Method in class com.aragost.javahg.commands.flags.BisectCommandFlags
Set the --extend command line flag.
ExtensionManager - Class in com.aragost.javahg.internals
This is a singleton to manage Mercurial extensions.
ExtensionManager() - Constructor for class com.aragost.javahg.internals.ExtensionManager
 
extra(String, String) - Method in class com.aragost.javahg.commands.CommitCommand
Add a field to the extra dictionary for the changeset.

F

file(String) - Method in class com.aragost.javahg.Repository
Return a File object for the file name specified in this repository.
fileArray2StringArray(File[]) - Static method in class com.aragost.javahg.internals.Utils
Convert an array of Files to an array of Strings.
fileData - Variable in class com.aragost.javahg.Changeset
The actual file data for the Changeset
fileStatus() - Method in class com.aragost.javahg.commands.LogCommand
Enable eager load for changeset file data.
finalize() - Method in class com.aragost.javahg.internals.Server
 
find(byte[]) - Method in class com.aragost.javahg.internals.HgInputStream
Search for the specified bytes in the stream.
find(int) - Method in class com.aragost.javahg.internals.HgInputStream
Read from stream until the specified byte is read.
FlagConflict - Class in com.aragost.javahg.merge
Represent a file where merge gave a flag conflict.
FlagConflict(ConflictResolvingContext, String) - Constructor for class com.aragost.javahg.merge.FlagConflict
 
follow() - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --follow command line flag.
followFirst() - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Deprecated. Using this flag has been deprecated in Mercurial. The flag wont go away, but there will typically be a better way to express the same thing.
force() - Method in class com.aragost.javahg.commands.flags.BookmarksCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.BranchCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.CopyCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.MergeCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.PhaseCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.PullCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.RemoveCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.RenameCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.RollbackCommandFlags
Set the --force command line flag.
force() - Method in class com.aragost.javahg.commands.flags.TagCommandFlags
Set the --force command line flag.
fromLine(Repository, String) - Static method in class com.aragost.javahg.commands.Branch
 
fromLine(String) - Static method in class com.aragost.javahg.commands.UpdateResult
Factory method to create an UpdateResult.
fromStream(HgInputStream) - Static method in class com.aragost.javahg.commands.ResolveStatusLine
 
fromStream(HgInputStream) - Static method in class com.aragost.javahg.commands.StatusLine
 
fromString(String) - Static method in class com.aragost.javahg.HgVersion
Factory method to create a HgVersion from a version string from Mercurial
fromText(String) - Static method in enum com.aragost.javahg.Phase
Return the Phase that correspond to the specified text.

G

GenericCommand - Class in com.aragost.javahg.internals
 
GenericCommand(Repository, String) - Constructor for class com.aragost.javahg.internals.GenericCommand
 
GenericLogCommand - Class in com.aragost.javahg.internals
A generic log command where the client is responsible to consume the output from the command server.
GenericLogCommand(Repository) - Constructor for class com.aragost.javahg.internals.GenericLogCommand
 
get() - Method in class com.aragost.javahg.commands.BranchCommand
Get the branch for working directory.
getAdded() - Method in class com.aragost.javahg.commands.StatusResult
List of added files.
getAddedFiles() - Method in class com.aragost.javahg.Changeset
 
getBase() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
getBaseRepository() - Method in class com.aragost.javahg.BaseRepository
 
getBaseRepository() - Method in class com.aragost.javahg.Bundle
 
getBaseRepository() - Method in class com.aragost.javahg.Repository
 
getBranch() - Method in class com.aragost.javahg.Changeset
 
getBranchName() - Method in class com.aragost.javahg.WorkingCopy
 
getBranchTip() - Method in class com.aragost.javahg.commands.Branch
 
getBytes(String) - Method in class com.aragost.javahg.Changeset.Extra
 
getCachePolicy() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getCacheStats() - Method in class com.aragost.javahg.Repository
 
getChangeset() - Method in class com.aragost.javahg.Bookmark
 
getChangeset() - Method in class com.aragost.javahg.commands.AnnotateLine
 
getChangeSet() - Method in class com.aragost.javahg.commands.AnnotateLine
Deprecated. use getChangeset()
getChangeset() - Method in class com.aragost.javahg.commands.Tag
 
getChangesetCache() - Method in class com.aragost.javahg.Repository
 
getChangesetIfInCache(String) - Method in class com.aragost.javahg.Repository
 
getChangesets() - Method in class com.aragost.javahg.Bundle
Return the changeset for this bundle.
getClean() - Method in class com.aragost.javahg.commands.StatusResult
 
getCodingErrorAction() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getCommand() - Method in exception com.aragost.javahg.commands.ExecutionException
 
getCommand() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
getCommand() - Method in exception com.aragost.javahg.UnknownCommandException
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.AddCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.AddRemoveCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.BisectCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.BookmarksCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.BranchCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.BranchesCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.CatCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.CommitCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.CopyCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.ExportCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.GraftCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.HeadsCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.LocateCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.ManifestCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.MergeCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.ParentsCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.PhaseCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.PullCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.RemoveCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.RenameCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.ResolveCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.RevertCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.RollbackCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.RootCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.TagCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.TagsCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.UpdateCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.commands.flags.VersionCommandFlags
 
getCommandName() - Method in class com.aragost.javahg.internals.AbstractCommand
 
getCommandName() - Method in class com.aragost.javahg.internals.GenericCommand
 
getCommandWaitTimeout() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getConcurrency() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getConfiguration() - Method in class com.aragost.javahg.BaseRepository
 
getCopied() - Method in class com.aragost.javahg.commands.StatusResult
Mapping copied files.
getDate() - Method in class com.aragost.javahg.DateTime
 
getDeletedFiles() - Method in class com.aragost.javahg.Changeset
 
getDirectory() - Method in class com.aragost.javahg.BaseRepository
 
getDirectory() - Method in class com.aragost.javahg.Repository
 
getEncoding() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getEnvironment() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getErrorAction() - Method in class com.aragost.javahg.internals.Server
 
getErrorString() - Method in class com.aragost.javahg.internals.AbstractCommand
 
getExitValue() - Method in exception com.aragost.javahg.internals.UnexpectedServerTerminationException
 
getExtensionClasses() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getExtra() - Method in class com.aragost.javahg.Changeset
 
getFile() - Method in class com.aragost.javahg.Bundle
 
getFile() - Method in class com.aragost.javahg.merge.MergeFile
 
getFileName() - Method in class com.aragost.javahg.internals.BaseStatusLine
 
getFilename() - Method in class com.aragost.javahg.merge.MergeFile
 
getFlagConflicts() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
getHgBin() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getHgrcPath() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getHgString() - Method in class com.aragost.javahg.DateTime
 
getHgVersion(Repository) - Method in class com.aragost.javahg.internals.ServerPool
 
getHgVersion() - Method in class com.aragost.javahg.Repository
 
getIgnored() - Method in class com.aragost.javahg.commands.StatusResult
 
getInstance() - Static method in class com.aragost.javahg.internals.ExtensionManager
 
getIOException() - Method in exception com.aragost.javahg.internals.RuntimeIOException
 
getKeepDeleteConflicts() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
getKeepParent() - Method in class com.aragost.javahg.merge.KeepDeleteConflict
 
getLine() - Method in class com.aragost.javahg.commands.AnnotateLine
 
getLocal() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
getLogger(Class<?>) - Static method in class com.aragost.javahg.log.LoggerFactory
Return a logger for the class
getLoggerInstance(Class<?>) - Method in class com.aragost.javahg.log.JULLoggerFactory
 
getLoggerInstance(Class<?>) - Method in class com.aragost.javahg.log.LoggerFactory
 
getMajor() - Method in class com.aragost.javahg.HgVersion
 
getMergeConflicts() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
getMergeCtx() - Method in class com.aragost.javahg.merge.MergeFile
 
getMerged() - Method in class com.aragost.javahg.commands.UpdateResult
 
getMessage() - Method in class com.aragost.javahg.Changeset
 
getMessage() - Method in class com.aragost.javahg.commands.BisectResult
 
getMessage() - Method in exception com.aragost.javahg.internals.RuntimeIOException
 
getMinor() - Method in class com.aragost.javahg.HgVersion
 
getMissing() - Method in class com.aragost.javahg.commands.StatusResult
 
getMissingAnswers() - Method in class com.aragost.javahg.commands.ManifestMergeOracle
 
getModified() - Method in class com.aragost.javahg.commands.StatusResult
 
getModifiedFiles() - Method in class com.aragost.javahg.Changeset
 
getName() - Method in class com.aragost.javahg.Bookmark
 
getName() - Method in class com.aragost.javahg.commands.Branch
 
getName() - Method in class com.aragost.javahg.commands.Tag
 
getName() - Method in class com.aragost.javahg.internals.JavaHgMercurialExtension
 
getName() - Method in class com.aragost.javahg.MercurialExtension
 
getNode() - Method in class com.aragost.javahg.Changeset
 
getNumIdleServers() - Method in class com.aragost.javahg.internals.ServerPool
 
getOverlayRepository() - Method in class com.aragost.javahg.Bundle
 
getParent1() - Method in class com.aragost.javahg.Changeset
 
getParent1() - Method in class com.aragost.javahg.WorkingCopy
 
getParent2() - Method in class com.aragost.javahg.Changeset
 
getParent2() - Method in class com.aragost.javahg.WorkingCopy
 
getPath() - Method in class com.aragost.javahg.internals.JavaHgMercurialExtension
 
getPath() - Method in class com.aragost.javahg.MercurialExtension
 
getRelease() - Method in class com.aragost.javahg.HgVersion
 
getRemote() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
getRemoved() - Method in class com.aragost.javahg.commands.StatusResult
 
getRemoved() - Method in class com.aragost.javahg.commands.UpdateResult
 
getRepository() - Method in class com.aragost.javahg.internals.AbstractCommand
 
getRepository() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
getResourceName() - Method in class com.aragost.javahg.internals.JavaHgMercurialExtension
 
getReturnCode() - Method in class com.aragost.javahg.internals.AbstractCommand
 
getRevision() - Method in class com.aragost.javahg.Changeset
 
getServerIdleTime() - Method in class com.aragost.javahg.RepositoryConfiguration
After a command server is idle for this many seconds the server pool may stop it.
getServerPool() - Method in class com.aragost.javahg.BaseRepository
 
getServerPool() - Method in class com.aragost.javahg.Repository
 
getServers() - Method in class com.aragost.javahg.internals.ServerPool
 
getSource() - Method in class com.aragost.javahg.merge.GraftContext
 
getSshBin() - Method in class com.aragost.javahg.RepositoryConfiguration
Returns the custom SSH executable which should be used by Mercurial.
getStartupStderr() - Method in class com.aragost.javahg.internals.Server
 
getState() - Method in class com.aragost.javahg.merge.KeepDeleteConflict
 
getStderrBufferSize() - Method in class com.aragost.javahg.internals.Server
 
getStderrBufferSize() - Method in class com.aragost.javahg.RepositoryConfiguration
 
getString(String) - Method in class com.aragost.javahg.Changeset.Extra
 
getSuffix() - Method in class com.aragost.javahg.HgVersion
 
getTimestamp() - Method in class com.aragost.javahg.Changeset
 
getType() - Method in class com.aragost.javahg.internals.BaseStatusLine
 
getUnknown() - Method in class com.aragost.javahg.commands.StatusResult
 
getUnresolved() - Method in class com.aragost.javahg.commands.UpdateResult
 
getUpdated() - Method in class com.aragost.javahg.commands.UpdateResult
 
getUser() - Method in class com.aragost.javahg.Changeset
 
getUtf8Charset() - Static method in class com.aragost.javahg.internals.Utils
 
getVersionString() - Method in class com.aragost.javahg.HgVersion
 
getWorkingCopy() - Method in class com.aragost.javahg.merge.ConflictResolvingContext
 
good() - Method in class com.aragost.javahg.commands.flags.BisectCommandFlags
Set the --good command line flag.
GraftCommand - Class in com.aragost.javahg.commands
Command class for executing hg graft.
GraftCommand(Repository) - Constructor for class com.aragost.javahg.commands.GraftCommand
 
GraftCommandFlags - Class in com.aragost.javahg.commands.flags
 
GraftCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.GraftCommandFlags
 
GraftContext - Class in com.aragost.javahg.merge
 
GraftContext(GraftCommand, int) - Constructor for class com.aragost.javahg.merge.GraftContext
 

H

hashCode() - Method in class com.aragost.javahg.Changeset
 
hashCode() - Method in class com.aragost.javahg.commands.Tag
 
hashCode() - Method in class com.aragost.javahg.DateTime
 
hasNext() - Method in class com.aragost.javahg.internals.LineIterator
 
heads() - Method in class com.aragost.javahg.Repository
 
HeadsCommand - Class in com.aragost.javahg.commands
Command class for executing hg heads.
HeadsCommand(Repository) - Constructor for class com.aragost.javahg.commands.HeadsCommand
 
HeadsCommandFlags - Class in com.aragost.javahg.commands.flags
 
HeadsCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.HeadsCommandFlags
 
HgInputStream - Class in com.aragost.javahg.internals
An InputStream that has some methods that make it convenient for JavaHg to read the stdout from the command server.
HgInputStream(InputStream, CharsetDecoder) - Constructor for class com.aragost.javahg.internals.HgInputStream
 
HgVersion - Class in com.aragost.javahg
Representing a Mercurial version.
hidden() - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Deprecated. Using this flag has been deprecated in Mercurial. The flag wont go away, but there will typically be a better way to express the same thing.

I

ignoreAllSpace() - Method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
Set the --ignore-all-space command line flag.
ignoreAllSpace() - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --ignore-all-space command line flag.
ignoreBlankLines() - Method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
Set the --ignore-blank-lines command line flag.
ignoreBlankLines() - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --ignore-blank-lines command line flag.
ignored() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --ignored command line flag.
ignoreSpaceChange() - Method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
Set the --ignore-space-change command line flag.
ignoreSpaceChange() - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --ignore-space-change command line flag.
importBranch() - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --import-branch command line flag.
ImportCommand - Class in com.aragost.javahg.commands
 
ImportCommand(Repository) - Constructor for class com.aragost.javahg.commands.ImportCommand
 
ImportCommandFlags - Class in com.aragost.javahg.commands.flags
 
ImportCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.ImportCommandFlags
 
inactive() - Method in class com.aragost.javahg.commands.flags.BookmarksCommandFlags
Set the --inactive command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.AddCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.CatCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.CommitCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.CopyCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.LocateCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.RemoveCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.RenameCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.ResolveCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.RevertCommandFlags
Set the --include command line flag.
include(String...) - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --include command line flag.
includeTip - Variable in class com.aragost.javahg.commands.TagsCommand
 
includeTip() - Method in class com.aragost.javahg.commands.TagsCommand
Whether tip should be included.
IncomingCommand - Class in com.aragost.javahg.commands
Command class for executing hg incoming.
IncomingCommand(Repository) - Constructor for class com.aragost.javahg.commands.IncomingCommand
 
IncomingCommandFlags - Class in com.aragost.javahg.commands.flags
 
IncomingCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.IncomingCommandFlags
 
incrementRefCount() - Method in class com.aragost.javahg.internals.ServerPool
Increment the refCount for this server pool.
info(String) - Method in class com.aragost.javahg.log.JULLogger
 
info(String, Object...) - Method in class com.aragost.javahg.log.JULLogger
 
info(String, Throwable) - Method in class com.aragost.javahg.log.JULLogger
 
info(String) - Method in interface com.aragost.javahg.log.Logger
Logs an informational message - information about application progress, e.g.
info(String, Object...) - Method in interface com.aragost.javahg.log.Logger
 
info(String, Throwable) - Method in interface com.aragost.javahg.log.Logger
 
init(List<Changeset>) - Method in class com.aragost.javahg.Bundle
Do the final initialization of the bundle.
initFromStream(HgInputStream) - Method in class com.aragost.javahg.internals.BaseStatusLine
Read and decode a line from an input stream.
initialize() - Method in class com.aragost.javahg.internals.JavaHgMercurialExtension
 
initialize() - Method in class com.aragost.javahg.MercurialExtension
The initialize method is called once for each extension
initMecurialRepository(File) - Method in class com.aragost.javahg.internals.Server
Convenience method to initialize a mercurial repository in a directory.
insecure() - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --insecure command line flag.
insecure() - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --insecure command line flag.
insecure() - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --insecure command line flag.
insecure() - Method in class com.aragost.javahg.commands.flags.PullCommandFlags
Set the --insecure command line flag.
insecure() - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
Set the --insecure command line flag.
isActive() - Method in class com.aragost.javahg.Bookmark
 
isBefore(HgVersion) - Method in class com.aragost.javahg.HgVersion
 
isClosed() - Method in class com.aragost.javahg.commands.Branch
 
isComplete() - Method in class com.aragost.javahg.commands.BisectResult
 
isDebugEnabled() - Method in class com.aragost.javahg.log.JULLogger
 
isDebugEnabled() - Method in interface com.aragost.javahg.log.Logger
 
isEnablePendingChangesets() - Method in class com.aragost.javahg.internals.Server
 
isEnablePendingChangesets() - Method in class com.aragost.javahg.RepositoryConfiguration
 
isEof() - Method in class com.aragost.javahg.internals.HgInputStream
 
isErrorEnabled() - Method in class com.aragost.javahg.log.JULLogger
 
isErrorEnabled() - Method in interface com.aragost.javahg.log.Logger
 
isInfoEnabled() - Method in class com.aragost.javahg.log.JULLogger
 
isInfoEnabled() - Method in interface com.aragost.javahg.log.Logger
 
isLocal() - Method in class com.aragost.javahg.commands.Tag
 
isReleaseCandidate() - Method in class com.aragost.javahg.HgVersion
 
isResolved() - Method in class com.aragost.javahg.merge.MergeConflict
 
isSuccessful() - Method in class com.aragost.javahg.commands.AddCommand
Check if the command ended successfully.
isSuccessful() - Method in class com.aragost.javahg.commands.AddRemoveCommand
Check if the command ended successfully.
isSuccessful() - Method in class com.aragost.javahg.commands.BackoutCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.CommitCommand
Check if the commit was successful.
isSuccessful() - Method in class com.aragost.javahg.commands.GraftCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.IncomingCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.MergeCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.OutgoingCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.PhaseCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.PullCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.PushCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.RemoveCommand
Check if the command ended successfully.
isSuccessful() - Method in class com.aragost.javahg.commands.ResolveCommand
 
isSuccessful() - Method in class com.aragost.javahg.commands.UpdateCommand
 
isSuccessful() - Method in class com.aragost.javahg.internals.AbstractCommand
Check if the command ended with a zero return code.
isSymlink(File) - Static method in class com.aragost.javahg.internals.Utils
Determines whether the specified file is a Symbolic Link rather than an actual file.
isUnknown() - Method in class com.aragost.javahg.HgVersion
 
isWarnEnabled() - Method in class com.aragost.javahg.log.JULLogger
 
isWarnEnabled() - Method in interface com.aragost.javahg.log.Logger
 
isWindows() - Static method in class com.aragost.javahg.internals.Utils
 
iterator() - Method in class com.aragost.javahg.commands.StatusCommand
 
iterator(String...) - Method in class com.aragost.javahg.commands.StatusCommand
 
iterator() - Method in class com.aragost.javahg.internals.LineIterator
 

J

JavaHgMercurialExtension - Class in com.aragost.javahg.internals
Extension class to load the JavaHg specific Mercurial extension
JavaHgMercurialExtension() - Constructor for class com.aragost.javahg.internals.JavaHgMercurialExtension
 
JULLogger - Class in com.aragost.javahg.log
This simulates the Logger class from slf4j.
JULLogger(String) - Constructor for class com.aragost.javahg.log.JULLogger
 
JULLoggerFactory - Class in com.aragost.javahg.log
 
JULLoggerFactory() - Constructor for class com.aragost.javahg.log.JULLoggerFactory
 

K

keep(String) - Method in class com.aragost.javahg.commands.ManifestMergeOracle
 
keep() - Method in class com.aragost.javahg.merge.KeepDeleteConflict
 
KeepDeleteConflict - Class in com.aragost.javahg.merge
 
KeepDeleteConflict(ConflictResolvingContext, String, KeepDeleteConflict.State) - Constructor for class com.aragost.javahg.merge.KeepDeleteConflict
 
KeepDeleteConflict.State - Enum in com.aragost.javahg.merge
 
keyword(String...) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --keyword command line flag.

L

launchIterator(String...) - Method in class com.aragost.javahg.internals.AbstractCommand
 
launchStream(String...) - Method in class com.aragost.javahg.internals.AbstractCommand
Launch the command and return stdout as a InputStream.
launchString(String...) - Method in class com.aragost.javahg.internals.AbstractCommand
Launch the command and return stdout as a String.
limit(String) - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --limit command line flag.
limit(int) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --limit command line flag.
limit(String) - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --limit command line flag.
LineIterator - Class in com.aragost.javahg.internals
 
LineIterator(HgInputStream) - Constructor for class com.aragost.javahg.internals.LineIterator
 
lines() - Method in class com.aragost.javahg.commands.StatusCommand
 
lines(String...) - Method in class com.aragost.javahg.commands.StatusCommand
 
lines(File...) - Method in class com.aragost.javahg.commands.StatusCommand
 
list() - Method in class com.aragost.javahg.commands.BookmarksCommand
 
list() - Method in class com.aragost.javahg.commands.ResolveCommand
This correspond to the --list option for resolve.
loadService(Class<S>) - Static method in class com.aragost.javahg.internals.ServiceLoader
This method is shorthand for ServiceLoader.loadService(java.lang.ClassLoader, java.lang.Class) with the context classloader.
loadService(ClassLoader, Class<S>) - Static method in class com.aragost.javahg.internals.ServiceLoader
Returns a implementation of the given service or null if no service could be found.
local() - Method in class com.aragost.javahg.commands.flags.TagCommandFlags
Set the --local command line flag.
LocateCommand - Class in com.aragost.javahg.commands
Command class for executing hg locate.
LocateCommand(Repository) - Constructor for class com.aragost.javahg.commands.LocateCommand
 
LocateCommandFlags - Class in com.aragost.javahg.commands.flags
 
LocateCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.LocateCommandFlags
 
lock() - Method in class com.aragost.javahg.Repository
 
LogCommand - Class in com.aragost.javahg.commands
Command class for executing hg log.
LogCommand(Repository) - Constructor for class com.aragost.javahg.commands.LogCommand
 
LogCommand(Repository, String) - Constructor for class com.aragost.javahg.commands.LogCommand
Construct a LogCommand using the specified template.
LogCommandFlags - Class in com.aragost.javahg.commands.flags
 
LogCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.LogCommandFlags
 
Logger - Interface in com.aragost.javahg.log
General interface for logging.
LoggerFactory - Class in com.aragost.javahg.log
Factory class to retrieve a Logger instance.
LoggerFactory() - Constructor for class com.aragost.javahg.log.LoggerFactory
 

M

ManifestCommand - Class in com.aragost.javahg.commands
Command class for executing hg manifest.
ManifestCommand(Repository) - Constructor for class com.aragost.javahg.commands.ManifestCommand
 
ManifestCommandFlags - Class in com.aragost.javahg.commands.flags
 
ManifestCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.ManifestCommandFlags
 
ManifestMergeOracle - Class in com.aragost.javahg.commands
 
ManifestMergeOracle() - Constructor for class com.aragost.javahg.commands.ManifestMergeOracle
 
mark(String...) - Method in class com.aragost.javahg.commands.ResolveCommand
 
markResolved() - Method in class com.aragost.javahg.merge.MergeConflict
Mark this merge conflict as resolved
match(byte[]) - Method in class com.aragost.javahg.internals.HgInputStream
Look for a fixed set of bytes in the stream.
match(int) - Method in class com.aragost.javahg.internals.HgInputStream
Look for a fixed byte in the stream.
MercurialExtension - Class in com.aragost.javahg
To implement Mercurial commands for an extension create a subclass of this class.
MercurialExtension() - Constructor for class com.aragost.javahg.MercurialExtension
 
merge() - Method in class com.aragost.javahg.commands.BackoutCommand
 
merge() - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Set the --merge command line flag.
merge() - Method in class com.aragost.javahg.internals.UpdateMergeHelper
 
merge(Changeset) - Method in class com.aragost.javahg.WorkingCopy
Merge the working copy with the specified changeset
MergeCommand - Class in com.aragost.javahg.commands
Command class for executing hg merge.
MergeCommand(Repository) - Constructor for class com.aragost.javahg.commands.MergeCommand
 
MergeCommandFlags - Class in com.aragost.javahg.commands.flags
 
MergeCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.MergeCommandFlags
 
MergeConflict - Class in com.aragost.javahg.merge
 
MergeConflict(ConflictResolvingContext, String) - Constructor for class com.aragost.javahg.merge.MergeConflict
 
MergeContext - Class in com.aragost.javahg.merge
 
MergeContext(AbstractCommand) - Constructor for class com.aragost.javahg.merge.MergeContext
 
MergeFile - Class in com.aragost.javahg.merge
Base class for files somehow related to a merge.
MergeFile(ConflictResolvingContext, String) - Constructor for class com.aragost.javahg.merge.MergeFile
 
message(String) - Method in class com.aragost.javahg.commands.CommitCommand
Set the commit message.
message(String) - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Set the --message command line flag.
message(String) - Method in class com.aragost.javahg.commands.flags.CommitCommandFlags
Set the --message command line flag.
message(String) - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --message command line flag.
message(String) - Method in class com.aragost.javahg.commands.flags.TagCommandFlags
Set the --message command line flag.
modified() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --modified command line flag.
mustMatch(byte[]) - Method in class com.aragost.javahg.internals.HgInputStream
Verifies that the next bytes in the stream matches the specified bytes.
mustMatch(int) - Method in class com.aragost.javahg.internals.HgInputStream
Verifies that the next byte in the stream matches the specified byte.

N

needsInputLine() - Method in class com.aragost.javahg.internals.AbstractCommand
 
newBranch() - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
Set the --new-branch command line flag.
newDecoder() - Method in class com.aragost.javahg.BaseRepository
 
newDecoder() - Method in class com.aragost.javahg.internals.Server
 
newDecoder() - Method in class com.aragost.javahg.internals.ServerPool
 
newDecoder() - Method in class com.aragost.javahg.Repository
 
newEncoder() - Method in class com.aragost.javahg.internals.Server
 
newestFirst() - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --newest-first command line flag.
newestFirst() - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --newest-first command line flag.
next(int) - Method in class com.aragost.javahg.internals.HgInputStream
Get the next length bytes from the stream.
next() - Method in class com.aragost.javahg.internals.LineIterator
 
nextAsText(int) - Method in class com.aragost.javahg.internals.HgInputStream
Get the next length bytes from the stream, and return it as a String
noBackup() - Method in class com.aragost.javahg.commands.flags.RevertCommandFlags
Set the --no-backup command line flag.
noCommit() - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --no-commit command line flag.
nodates() - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --nodates command line flag.
nodates() - Method in class com.aragost.javahg.commands.flags.ExportCommandFlags
Set the --nodates command line flag.
noFollow() - Method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
Set the --no-follow command line flag.
noMerges() - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --no-merges command line flag.
noMerges() - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --no-merges command line flag.
noMerges() - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --no-merges command line flag.
noupdate() - Method in class com.aragost.javahg.commands.flags.BisectCommandFlags
Set the --noupdate command line flag.
noupdate() - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --noupdate command line flag.
NULL_ID - Static variable in class com.aragost.javahg.Changeset
The id for the null changeset

O

obfuscateLoginData(String) - Static method in class com.aragost.javahg.internals.Utils
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.AddCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.AddRemoveCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.BisectCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.BookmarksCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.BranchCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.BranchesCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.CatCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.CloneCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.CommitCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.CopyCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.DiffCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.ExportCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.GraftCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.HeadsCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.ImportCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.LocateCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.LogCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.ManifestCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.MergeCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.ParentsCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.PhaseCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.PullCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.PushCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.RemoveCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.RenameCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.ResolveCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.RevertCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.RollbackCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.RootCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.StatusCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.TagCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.TagsCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.UpdateCommandFlags
 
on(Repository) - Static method in class com.aragost.javahg.commands.flags.VersionCommandFlags
 
onlyBranch(String...) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Deprecated. Using this flag has been deprecated in Mercurial. The flag wont go away, but there will typically be a better way to express the same thing.
onlyMerges() - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Deprecated. Using this flag has been deprecated in Mercurial. The flag wont go away, but there will typically be a better way to express the same thing.
open(RepositoryConfiguration, File) - Static method in class com.aragost.javahg.Repository
Open an existing Mercurial repository.
open(File) - Static method in class com.aragost.javahg.Repository
Open an existing Mercurial repository.
OutgoingCommand - Class in com.aragost.javahg.commands
Command class for executing hg outgoing.
OutgoingCommand(Repository) - Constructor for class com.aragost.javahg.commands.OutgoingCommand
 
OutgoingCommandFlags - Class in com.aragost.javahg.commands.flags
 
OutgoingCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.OutgoingCommandFlags
 
OutputChannelInputStream - Class in com.aragost.javahg.internals
An input stream that will make everything written to the output channel for one command available as an input stream.

P

parent(String) - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Deprecated. Using this flag has been deprecated in Mercurial. The flag wont go away, but there will typically be a better way to express the same thing.
parent2Status() - Method in class com.aragost.javahg.WorkingCopy
 
ParentsCommand - Class in com.aragost.javahg.commands
Command class for executing hg parents.
ParentsCommand(Repository) - Constructor for class com.aragost.javahg.commands.ParentsCommand
 
ParentsCommandFlags - Class in com.aragost.javahg.commands.flags
 
ParentsCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.ParentsCommandFlags
 
parse(String) - Static method in class com.aragost.javahg.DateTime
Create a new instance by parsing the given String.
parse(Repository, File[], LineIterator, String) - Static method in class com.aragost.javahg.internals.CopyRenameHelper
 
parseCopyLine(String, String) - Static method in class com.aragost.javahg.internals.CopyRenameHelper
 
parseStream(AbstractCommand, HgInputStream) - Static method in class com.aragost.javahg.internals.PullPushHelper
 
PatternReplacingOutputStream - Class in com.aragost.javahg.internals
 
PatternReplacingOutputStream(OutputStream, Map<String, byte[]>) - Constructor for class com.aragost.javahg.internals.PatternReplacingOutputStream
 
peek() - Method in class com.aragost.javahg.internals.HgInputStream
Return the next byte from the stream without forwarding the position.
phase() - Method in class com.aragost.javahg.Changeset
 
Phase - Enum in com.aragost.javahg
Enum type to represent phases introduced in Mercurial 2.1
PhaseCommand - Class in com.aragost.javahg.commands
Command class for executing hg phase.
PhaseCommand(Repository) - Constructor for class com.aragost.javahg.commands.PhaseCommand
 
PhaseCommandFlags - Class in com.aragost.javahg.commands.flags
 
PhaseCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.PhaseCommandFlags
 
phases(String...) - Method in class com.aragost.javahg.Repository
Return the phases of the specified revisions
process(Collection<Class<? extends MercurialExtension>>) - Method in class com.aragost.javahg.internals.ExtensionManager
Enable the Mercurial extension for the classes.
processStream(HgInputStream, boolean) - Method in class com.aragost.javahg.merge.BackoutConflictResolvingContext
Example:
processStream(HgInputStream, boolean) - Method in class com.aragost.javahg.merge.ConflictResolvingContext
Read input from the stream record conflicts.
prune(String...) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --prune command line flag.
pub() - Method in class com.aragost.javahg.commands.PhaseCommand
Set the --public command line flag.
pull() - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --pull command line flag.
PullCommand - Class in com.aragost.javahg.commands
Command class for executing hg pull.
PullCommand(Repository) - Constructor for class com.aragost.javahg.commands.PullCommand
 
PullCommandFlags - Class in com.aragost.javahg.commands.flags
 
PullCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.PullCommandFlags
 
PullPushHelper - Class in com.aragost.javahg.internals
 
PullPushHelper() - Constructor for class com.aragost.javahg.internals.PullPushHelper
 
PushCommand - Class in com.aragost.javahg.commands
Command class for executing hg push.
PushCommand(Repository) - Constructor for class com.aragost.javahg.commands.PushCommand
 
PushCommandFlags - Class in com.aragost.javahg.commands.flags
 
PushCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.PushCommandFlags
 
pushToRepository() - Method in class com.aragost.javahg.Bundle
Push the changesets in the bundle to its base repository.
put(Server) - Method in class com.aragost.javahg.internals.ServerPool
Return the server to the pool of available servers.

R

randomBytes() - Static method in class com.aragost.javahg.internals.Utils
Generate some random bytes that is printable Ascii characters.
read() - Method in class com.aragost.javahg.internals.BlockInputStream
 
read(byte[], int, int) - Method in class com.aragost.javahg.internals.BlockInputStream
 
read() - Method in class com.aragost.javahg.internals.OutputChannelInputStream
 
read(byte[], int, int) - Method in class com.aragost.javahg.internals.OutputChannelInputStream
 
readBigEndian(InputStream) - Static method in class com.aragost.javahg.internals.Utils
Read four bytes from the stream, and return the integer represented by these bytes in big endian.
readDecimal() - Method in class com.aragost.javahg.internals.HgInputStream
Read a non-negative integer from the stream.
readListFromStream(Repository, HgInputStream) - Static method in class com.aragost.javahg.Changeset
This method is an alias for Changeset.readListFromStream(Repository, HgInputStream, boolean) with the eager parameter set to false.
readListFromStream(Repository, HgInputStream, boolean) - Static method in class com.aragost.javahg.Changeset
Read the rest of the content of the stream and return a List of the Changeset found there.
readPhase() - Method in class com.aragost.javahg.Changeset
Deprecated. 
readPhases(String...) - Method in class com.aragost.javahg.Repository
Deprecated. use phases instead
readStream(InputStream, CharsetDecoder) - Static method in class com.aragost.javahg.internals.Utils
Read everything from the stream and return it as a String
relativeFile(File) - Method in class com.aragost.javahg.Repository
Convert the specified file object to a file object that is relative to the root of this repository.
remotecmd(String) - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --remotecmd command line flag.
remotecmd(String) - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --remotecmd command line flag.
remotecmd(String) - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --remotecmd command line flag.
remotecmd(String) - Method in class com.aragost.javahg.commands.flags.PullCommandFlags
Set the --remotecmd command line flag.
remotecmd(String) - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
Set the --remotecmd command line flag.
remove() - Method in class com.aragost.javahg.commands.flags.TagCommandFlags
Set the --remove command line flag.
remove() - Method in class com.aragost.javahg.internals.LineIterator
 
remove(String...) - Method in class com.aragost.javahg.WorkingCopy
 
RemoveCommand - Class in com.aragost.javahg.commands
Command class for executing hg remove.
RemoveCommand(Repository) - Constructor for class com.aragost.javahg.commands.RemoveCommand
 
RemoveCommandFlags - Class in com.aragost.javahg.commands.flags
 
RemoveCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.RemoveCommandFlags
 
removed() - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --removed command line flag.
removed() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --removed command line flag.
removeExtension(Class<? extends MercurialExtension>) - Method in class com.aragost.javahg.RepositoryConfiguration
 
rename(String, String) - Method in class com.aragost.javahg.commands.BookmarksCommand
Rename a bookmark
RenameCommand - Class in com.aragost.javahg.commands
 
RenameCommand(Repository) - Constructor for class com.aragost.javahg.commands.RenameCommand
 
RenameCommandFlags - Class in com.aragost.javahg.commands.flags
 
RenameCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.RenameCommandFlags
 
reopen() - Method in class com.aragost.javahg.internals.OutputChannelInputStream
Reopen this stream to read pending 'o' blocks.
reopenOutputChannelStream() - Method in class com.aragost.javahg.internals.AbstractCommand
Open the output stream again after sending input to the command server.
Repository - Class in com.aragost.javahg
A Mercurial repository.
Repository(RepositoryConfiguration.CachePolicy) - Constructor for class com.aragost.javahg.Repository
 
RepositoryConfiguration - Class in com.aragost.javahg
Settings for repository and underlying server process
RepositoryConfiguration() - Constructor for class com.aragost.javahg.RepositoryConfiguration
 
RepositoryConfiguration.CachePolicy - Enum in com.aragost.javahg
 
reset() - Method in class com.aragost.javahg.commands.flags.BisectCommandFlags
Set the --reset command line flag.
ResolveCommand - Class in com.aragost.javahg.commands
Command class for executing hg resolve.
ResolveCommand(Repository) - Constructor for class com.aragost.javahg.commands.ResolveCommand
 
ResolveCommandFlags - Class in com.aragost.javahg.commands.flags
 
ResolveCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.ResolveCommandFlags
 
ResolveStatusLine - Class in com.aragost.javahg.commands
 
ResolveStatusLine() - Constructor for class com.aragost.javahg.commands.ResolveStatusLine
 
ResolveStatusLine.Type - Enum in com.aragost.javahg.commands
 
resolveSymlinks(File) - Static method in class com.aragost.javahg.internals.Utils
Return a new File object where symlinks are resolved.
resolveWith(String) - Method in class com.aragost.javahg.merge.MergeConflict
Attempt to resolve conflict with the specified tool.
resolveWithInternalMerge() - Method in class com.aragost.javahg.merge.MergeConflict
Attempt to resolve conflict with Mercurial's internal merge tool
resourceAsFile(String) - Static method in class com.aragost.javahg.internals.Utils
Return a File that is created from a resource name found on the classpath.
resourceAsFile(String, Map<String, byte[]>) - Static method in class com.aragost.javahg.internals.Utils
Return a File that is created from a resource name found on the classpath.
rev(String) - Method in class com.aragost.javahg.commands.flags.AnnotateCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.BookmarksCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.CatCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.ExportCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.HeadsCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.LocateCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.ManifestCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.MergeCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.ParentsCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.PhaseCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.PullCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.RevertCommandFlags
Set the --rev command line flag.
rev(String...) - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.TagCommandFlags
Set the --rev command line flag.
rev(String) - Method in class com.aragost.javahg.commands.flags.UpdateCommandFlags
Set the --rev command line flag.
rev(Changeset) - Method in class com.aragost.javahg.commands.UpdateCommand
Set the --rev flag.
reverse() - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --reverse command line flag.
RevertCommand - Class in com.aragost.javahg.commands
 
RevertCommand(Repository) - Constructor for class com.aragost.javahg.commands.RevertCommand
 
RevertCommandFlags - Class in com.aragost.javahg.commands.flags
 
RevertCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.RevertCommandFlags
 
revisionUpTo(int) - Method in class com.aragost.javahg.internals.HgInputStream
Read a revision number from the stream until a fixed byte is found.
RollbackCommand - Class in com.aragost.javahg.commands
Command class for executing hg rollback.
RollbackCommand(Repository) - Constructor for class com.aragost.javahg.commands.RollbackCommand
 
RollbackCommandFlags - Class in com.aragost.javahg.commands.flags
 
RollbackCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.RollbackCommandFlags
 
RootCommand - Class in com.aragost.javahg.commands
Command class for executing hg root.
RootCommand(Repository) - Constructor for class com.aragost.javahg.commands.RootCommand
 
RootCommandFlags - Class in com.aragost.javahg.commands.flags
 
RootCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.RootCommandFlags
 
runCommand(List<String>, AbstractCommand) - Method in class com.aragost.javahg.internals.Server
Run the specified command and return a stream with the content of the output channel.
RuntimeIOException - Exception in com.aragost.javahg.internals
A wrapper for IOException.
RuntimeIOException(IOException) - Constructor for exception com.aragost.javahg.internals.RuntimeIOException
 

S

secret() - Method in class com.aragost.javahg.commands.flags.PhaseCommandFlags
Set the --secret command line flag.
sendLine(String) - Method in class com.aragost.javahg.internals.AbstractCommand
Send input line to command server in response to reading a block on the 'L' channel.
sendLine(String) - Method in class com.aragost.javahg.internals.Server
 
Server - Class in com.aragost.javahg.internals
Java class representing a Mercurial commandserver
Server(String, Charset) - Constructor for class com.aragost.javahg.internals.Server
Create a new Server object
ServerPool - Class in com.aragost.javahg.internals
A pool of Server instances.
ServerPool(RepositoryConfiguration, File, boolean, String) - Constructor for class com.aragost.javahg.internals.ServerPool
 
ServiceException - Exception in com.aragost.javahg.internals
This exception is thrown if an error occurs during load of a service with the ServiceLoader.
ServiceException() - Constructor for exception com.aragost.javahg.internals.ServiceException
 
ServiceException(String) - Constructor for exception com.aragost.javahg.internals.ServiceException
 
ServiceException(String, Throwable) - Constructor for exception com.aragost.javahg.internals.ServiceException
 
ServiceException(Throwable) - Constructor for exception com.aragost.javahg.internals.ServiceException
 
ServiceLoader - Class in com.aragost.javahg.internals
The ServiceLoader searches for Service implementations in META-INF/services.
ServiceLoader() - Constructor for class com.aragost.javahg.internals.ServiceLoader
 
set(String) - Method in class com.aragost.javahg.commands.BranchCommand
Set the branch for working directory.
setBranchName(String) - Method in class com.aragost.javahg.WorkingCopy
Set the branch name of working copy
setCachePolicy(RepositoryConfiguration.CachePolicy) - Method in class com.aragost.javahg.RepositoryConfiguration
 
setCodingErrorAction(CodingErrorAction) - Method in class com.aragost.javahg.RepositoryConfiguration
 
setCommandWaitTimeout(int) - Method in class com.aragost.javahg.RepositoryConfiguration
Set the maximum number of seconds to wait for a command server instance to become available.
setConcurrency(int) - Method in class com.aragost.javahg.RepositoryConfiguration
The maximum number of command server processes to use.
setEnablePendingChangesets(boolean) - Method in class com.aragost.javahg.internals.Server
 
setEnablePendingChangesets(boolean) - Method in class com.aragost.javahg.RepositoryConfiguration
 
setEncoding(Charset) - Method in class com.aragost.javahg.RepositoryConfiguration
 
setErrorAction(CodingErrorAction) - Method in class com.aragost.javahg.internals.Server
 
setExtensionClasses(Collection<Class<? extends MercurialExtension>>) - Method in class com.aragost.javahg.RepositoryConfiguration
 
setHgBin(String) - Method in class com.aragost.javahg.RepositoryConfiguration
 
setHgrcPath(String) - Method in class com.aragost.javahg.RepositoryConfiguration
 
setManageFile(boolean) - Method in class com.aragost.javahg.Bundle
 
setRollbackChangeset(Changeset) - Method in class com.aragost.javahg.merge.GraftContext
 
setServerIdleTime(int) - Method in class com.aragost.javahg.RepositoryConfiguration
After a command server is idle for this many seconds the server pool may stop it.
setSshBin(String) - Method in class com.aragost.javahg.RepositoryConfiguration
Sets the custom SSH executable which should be used by Mercurial.
setStderrBufferSize(int) - Method in class com.aragost.javahg.internals.Server
Set the buffer size for stderr from Mercurial server process.
setStderrBufferSize(int) - Method in class com.aragost.javahg.RepositoryConfiguration
 
showFunction() - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --show-function command line flag.
similarity(String) - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --similarity command line flag.
single(String...) - Method in class com.aragost.javahg.commands.LogCommand
Execute the log command and return a single Changeset.
single(Collection<T>) - Static method in class com.aragost.javahg.internals.Utils
Return the single element in the specified Collection.
skip() - Method in class com.aragost.javahg.commands.flags.BisectCommandFlags
Set the --skip command line flag.
ssh(String) - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --ssh command line flag.
ssh(String) - Method in class com.aragost.javahg.commands.flags.IncomingCommandFlags
Set the --ssh command line flag.
ssh(String) - Method in class com.aragost.javahg.commands.flags.OutgoingCommandFlags
Set the --ssh command line flag.
ssh(String) - Method in class com.aragost.javahg.commands.flags.PullCommandFlags
Set the --ssh command line flag.
ssh(String) - Method in class com.aragost.javahg.commands.flags.PushCommandFlags
Set the --ssh command line flag.
start(File, String, List<String>, Map<String, String>, Runnable) - Method in class com.aragost.javahg.internals.Server
Start the server in the specified directory.
stat() - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --stat command line flag.
status() - Method in class com.aragost.javahg.WorkingCopy
 
StatusCommand - Class in com.aragost.javahg.commands
Command class for executing hg status.
StatusCommand(Repository) - Constructor for class com.aragost.javahg.commands.StatusCommand
 
StatusCommandFlags - Class in com.aragost.javahg.commands.flags
 
StatusCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.StatusCommandFlags
 
StatusLine - Class in com.aragost.javahg.commands
A parsed line from the hg status output.
StatusLine() - Constructor for class com.aragost.javahg.commands.StatusLine
 
StatusLine.Type - Enum in com.aragost.javahg.commands
Status line types.
StatusResult - Class in com.aragost.javahg.commands
An aggregated status result.
StatusResult() - Constructor for class com.aragost.javahg.commands.StatusResult
 
stream(File...) - Method in class com.aragost.javahg.commands.DiffCommand
Run hg diff on the files.
stream(String...) - Method in class com.aragost.javahg.commands.ExportCommand
Export a revision to a stream.
stream(String...) - Method in class com.aragost.javahg.internals.GenericLogCommand
 
stringArray2FileArray(File, String[]) - Static method in class com.aragost.javahg.internals.Utils
 
stringValuedMap() - Method in class com.aragost.javahg.Changeset.Extra
 
style(String) - Method in class com.aragost.javahg.internals.GenericLogCommand
Specify style to use
switchParent() - Method in class com.aragost.javahg.commands.flags.ExportCommandFlags
Set the --switch-parent command line flag.

T

Tag - Class in com.aragost.javahg.commands
 
Tag(String, Changeset, boolean) - Constructor for class com.aragost.javahg.commands.Tag
 
TagCommand - Class in com.aragost.javahg.commands
Command class for executing hg tag.
TagCommand(Repository) - Constructor for class com.aragost.javahg.commands.TagCommand
 
TagCommandFlags - Class in com.aragost.javahg.commands.flags
 
TagCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.TagCommandFlags
 
tags() - Method in class com.aragost.javahg.Changeset
Return tags that is pointing the this changeset
TagsCommand - Class in com.aragost.javahg.commands
Command class for executing hg tags.
TagsCommand(Repository) - Constructor for class com.aragost.javahg.commands.TagsCommand
 
TagsCommandFlags - Class in com.aragost.javahg.commands.flags
 
TagsCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.TagsCommandFlags
 
take(AbstractCommand) - Method in class com.aragost.javahg.internals.ServerPool
Get a server.
template(String) - Method in class com.aragost.javahg.internals.GenericLogCommand
Specify template to use
textUpTo(byte[]) - Method in class com.aragost.javahg.internals.HgInputStream
Read from the stream until end is found, return the read portion as a String.
textUpTo(int) - Method in class com.aragost.javahg.internals.HgInputStream
Read from the stream until the byte b is found, return the read portion as a String.
tip() - Method in class com.aragost.javahg.Repository
 
tool(String) - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Set the --tool command line flag.
tool(String) - Method in class com.aragost.javahg.commands.flags.GraftCommandFlags
Set the --tool command line flag.
tool(String) - Method in class com.aragost.javahg.commands.flags.MergeCommandFlags
Set the --tool command line flag.
tool(String) - Method in class com.aragost.javahg.commands.flags.ResolveCommandFlags
Set the --tool command line flag.
topo() - Method in class com.aragost.javahg.commands.flags.HeadsCommandFlags
Set the --topo command line flag.
toString() - Method in class com.aragost.javahg.Bookmark
 
toString() - Method in class com.aragost.javahg.Changeset
 
toString() - Method in class com.aragost.javahg.commands.AnnotateLine
 
toString() - Method in class com.aragost.javahg.commands.Branch
 
toString() - Method in class com.aragost.javahg.commands.StatusResult
 
toString() - Method in class com.aragost.javahg.commands.Tag
 
toString() - Method in class com.aragost.javahg.commands.UpdateResult
 
toString() - Method in class com.aragost.javahg.DateTime
 
toString() - Method in class com.aragost.javahg.HgVersion
 
toString() - Method in class com.aragost.javahg.internals.AbstractCommand
 
toString() - Method in class com.aragost.javahg.internals.BaseStatusLine
 
toString() - Method in class com.aragost.javahg.internals.HgInputStream
 
toString() - Method in class com.aragost.javahg.internals.Server
 
toString() - Method in class com.aragost.javahg.merge.MergeFile
 
toString() - Method in class com.aragost.javahg.Repository
 
typeForChar(char) - Method in class com.aragost.javahg.commands.ResolveStatusLine
 
typeForChar(char) - Method in class com.aragost.javahg.commands.StatusLine
 
typeForChar(char) - Method in class com.aragost.javahg.internals.BaseStatusLine
 

U

uncompressed() - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --uncompressed command line flag.
UnexpectedCommandOutputException - Exception in com.aragost.javahg.internals
Exception thrown when during parsing of the output from command server, some unexpected output is encountered.
UnexpectedCommandOutputException(AbstractCommand, String) - Constructor for exception com.aragost.javahg.internals.UnexpectedCommandOutputException
 
UnexpectedCommandOutputException(String) - Constructor for exception com.aragost.javahg.internals.UnexpectedCommandOutputException
 
UnexpectedServerTerminationException - Exception in com.aragost.javahg.internals
 
UnexpectedServerTerminationException(int, Throwable) - Constructor for exception com.aragost.javahg.internals.UnexpectedServerTerminationException
 
unified(int) - Method in class com.aragost.javahg.commands.flags.DiffCommandFlags
Set the --unified command line flag.
unknown() - Method in class com.aragost.javahg.commands.flags.StatusCommandFlags
Set the --unknown command line flag.
unknown() - Static method in class com.aragost.javahg.HgVersion
 
UnknownCommandException - Exception in com.aragost.javahg
Exception thrown when an attempt it made to execute a command that the underlying Mercurial command server doesn't know.
UnknownCommandException(AbstractCommand) - Constructor for exception com.aragost.javahg.UnknownCommandException
 
unlock() - Method in class com.aragost.javahg.Repository
 
unmark(String...) - Method in class com.aragost.javahg.commands.ResolveCommand
 
update() - Method in class com.aragost.javahg.internals.UpdateMergeHelper
 
update(KeepDeleteConflict.State) - Method in class com.aragost.javahg.merge.KeepDeleteConflict
 
UpdateCommand - Class in com.aragost.javahg.commands
Command class for executing hg update.
UpdateCommand(Repository) - Constructor for class com.aragost.javahg.commands.UpdateCommand
 
UpdateCommandFlags - Class in com.aragost.javahg.commands.flags
 
UpdateCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.UpdateCommandFlags
 
UpdateMergeHelper - Class in com.aragost.javahg.internals
A helper class to parse output from update and merge commands.
UpdateMergeHelper(InputStream, ManifestMergeOracle, AbstractCommand) - Constructor for class com.aragost.javahg.internals.UpdateMergeHelper
 
UpdateResult - Class in com.aragost.javahg.commands
The statistic returned by running hg update.
updaterev(String) - Method in class com.aragost.javahg.commands.flags.CloneCommandFlags
Set the --updaterev command line flag.
upTo(byte[]) - Method in class com.aragost.javahg.internals.HgInputStream
Read from the stream until a fixed set of bytes are found.
upTo(int) - Method in class com.aragost.javahg.internals.HgInputStream
Read from the stream until a fixed byte is found.
user(String) - Method in class com.aragost.javahg.commands.flags.BackoutCommandFlags
Set the --user command line flag.
user(String) - Method in class com.aragost.javahg.commands.flags.CommitCommandFlags
Set the --user command line flag.
user(String) - Method in class com.aragost.javahg.commands.flags.GraftCommandFlags
Set the --user command line flag.
user(String) - Method in class com.aragost.javahg.commands.flags.ImportCommandFlags
Set the --user command line flag.
user(String...) - Method in class com.aragost.javahg.commands.flags.LogCommandFlags
Set the --user command line flag.
user(String) - Method in class com.aragost.javahg.commands.flags.TagCommandFlags
Set the --user command line flag.
Utils - Class in com.aragost.javahg.internals
Miscellaneous utils methods for JavaHg.
Utils() - Constructor for class com.aragost.javahg.internals.Utils
 

V

valueOf(String) - Static method in enum com.aragost.javahg.commands.ResolveStatusLine.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.aragost.javahg.commands.StatusLine.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.aragost.javahg.internals.AbstractCommand.State
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.aragost.javahg.merge.KeepDeleteConflict.State
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.aragost.javahg.Phase
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.aragost.javahg.RepositoryConfiguration.CachePolicy
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.aragost.javahg.commands.ResolveStatusLine.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.aragost.javahg.commands.StatusLine.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.aragost.javahg.internals.AbstractCommand.State
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.aragost.javahg.merge.KeepDeleteConflict.State
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.aragost.javahg.Phase
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.aragost.javahg.RepositoryConfiguration.CachePolicy
Returns an array containing the constants of this enum type, in the order they are declared.
VersionCommand - Class in com.aragost.javahg.commands
Command class for executing hg version.
VersionCommand(Repository) - Constructor for class com.aragost.javahg.commands.VersionCommand
 
VersionCommandFlags - Class in com.aragost.javahg.commands.flags
 
VersionCommandFlags(Repository) - Constructor for class com.aragost.javahg.commands.flags.VersionCommandFlags
 

W

warn(String) - Method in class com.aragost.javahg.log.JULLogger
 
warn(String, Object...) - Method in class com.aragost.javahg.log.JULLogger
 
warn(String, Throwable) - Method in class com.aragost.javahg.log.JULLogger
 
warn(String) - Method in interface com.aragost.javahg.log.Logger
 
warn(String, Object...) - Method in interface com.aragost.javahg.log.Logger
 
warn(String, Throwable) - Method in interface com.aragost.javahg.log.Logger
 
withDebugAndChangesetStyle() - Method in class com.aragost.javahg.internals.AbstractCommand
 
withDebugFlag() - Method in class com.aragost.javahg.internals.AbstractCommand
 
workingCopy() - Method in class com.aragost.javahg.Repository
Create a new WorkingCopy object for this repository.
WorkingCopy - Class in com.aragost.javahg
Represents working copy for a Repository.
write(int) - Method in class com.aragost.javahg.internals.PatternReplacingOutputStream
 
writeBigEndian(int, OutputStream) - Static method in class com.aragost.javahg.internals.Utils
Write 4 bytes representing the specified integer in big-endian.

A B C D E F G H I J K L M N O P R S T U V W

Copyright © 2011-2013 aragost Trifork ag. All Rights Reserved.