Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class NQueensBoard {

/** Parameters for initialization. */
public static enum Config {
public enum Config {
EMPTY, QUEENS_IN_FIRST_ROW, QUEEN_IN_EVERY_COL
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public String toString() {

private final String name;

private Orientation(String name) {
Orientation(String name) {
this.name = name;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static boolean isConnectiveIdentifierPart(char ch) {
private final String symbol;
private final int precedence;

private Connective(String symbol, int precedence) {
Connective(String symbol, int precedence) {
this.symbol = symbol;
this.precedence = precedence;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
public class SimulationPaneCtrl {

public static enum State {
public enum State {
READY, RUNNING, FINISHED, PAUSED, CANCELED
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public AgentAppController createController() {
protected static class RouteFindingAgentFrame extends MapAgentFrame {
private static final long serialVersionUID = 1L;

public static enum MapType {
public enum MapType {
ROMANIA, AUSTRALIA
};

Expand Down