public class Progress
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
ALL
Flag for including all of the above in report
|
static int |
CHAR
Flag for including a spinner in report
|
static int |
CURRENT_TOTAL
Flag for including current/total in the reporting (example: 5/20)
|
static int |
ETA
Flag for including estimate time ahead (ETA) in report (example: ETA: 5
minutes)
|
static int |
PERCENTAGE
Flag for including percentage in the reporting (example: (25%))
|
Constructor and Description |
---|
Progress(int total)
Initializes a new instant of the Progress object.
|
Modifier and Type | Method and Description |
---|---|
double |
getEta()
Gets the estimated time remaining based on the time we used so fare
|
long |
getNowNano()
Gets the nano time passed since start of progress.
|
java.lang.String |
getNowPretty(boolean includeSeconds)
Gets the time passed as an human readable string.
|
double |
getProgress()
Gets the progress as a fraction
|
java.lang.String |
getProgressString(int options)
Gets the progress string.
|
int |
getTotal()
Get the final number for this progress
|
void |
increment()
Increases the progress by 1, but never beyond the total progress
|
void |
increment(int n)
Increases the progress by n, but never beyond the total progress
|
boolean |
isDone()
Returns true if this progress is at last state.
|
void |
printProgressToConsole(int options)
Erases previously printed line and prints the progress string.
|
void |
start()
Mark now as the starting point in negotiation
|
public static int CURRENT_TOTAL
public static int PERCENTAGE
public static int ETA
public static int CHAR
public static int ALL
public Progress(int total)
total
- The total amount of progress that can be madepublic void increment()
public void increment(int n)
n
- the value to be addedpublic boolean isDone()
public void start()
public long getNowNano()
public java.lang.String getNowPretty(boolean includeSeconds)
includeSeconds
- if true, will print up to seconds. if false, will print up to
minutes.public int getTotal()
public double getProgress()
public java.lang.String getProgressString(int options)
Progress.ETA: Report estimated time ahead Progress.CURRENT_TOTAL: Report current/total Progress.PERCENTAGE: Report percentage done Progress.CHAR: Show spinner char Progress.ALL: All of the above
options
- See descriptionpublic void printProgressToConsole(int options)
Progress.ETA: Report estimated time ahead Progress.CURRENT_TOTAL: Report current/total Progress.PERCENTAGE: Report percentage done Progress.CHAR: Show spinner char Progress.ALL: All of the above
options
- See descriptionpublic double getEta()