Skip to content

Commit

Permalink
LRCI-1889 Add New enum 'DistType' to Job
Browse files Browse the repository at this point in the history
  • Loading branch information
yichenroy authored and brianchandotcom committed Jan 7, 2021
1 parent 70657cb commit d7450b6
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,21 @@ private BuildProfile(String displayString, String string) {

}

public static enum DistType {

CI("ci"), RELEASE("release");

@Override
public String toString() {
return _string;
}

private DistType(String string) {
_string = string;
}

private final String _string;

}

}

0 comments on commit d7450b6

Please sign in to comment.