Command.java
1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package pl.it_crowd.youtrack.api;
import pl.it_crowd.youtrack.api.defaults.Fields;
import pl.it_crowd.youtrack.api.defaults.StateValues;
public class Command {
// ------------------------------ FIELDS ------------------------------
protected StringBuilder command = new StringBuilder();
// -------------------------- STATIC METHODS --------------------------
public static Command assigneeCommand(String assignee)
{
return new Command().assignee(assignee);
}
public static Command stateCommand(String state)
{
return new Command().state(state);
}
public static Command stateCommand(StateValues state)
{
return new Command().state(state);
}
// --------------------------- CONSTRUCTORS ---------------------------
protected Command()
{
}
// ------------------------ CANONICAL METHODS ------------------------
@Override
public String toString()
{
return command.toString().trim();
}
// -------------------------- OTHER METHODS --------------------------
public Command assignee(String assignee)
{
return command(Fields.assignee, assignee);
}
public Command state(String state)
{
return command(Fields.state, state);
}
public Command state(StateValues state)
{
if (state.getCommandValue() == null) {
throw new IllegalArgumentException("Cannot set readonly state: " + state);
}
return state(state.getCommandValue());
}
protected Command command(Commander commander, String argument)
{
this.command.append(" ").append(commander.getCommand()).append(" ").append(argument);
return this;
}
}