Files
github-api/src/main/java/org/kohsuke/github/GHRepositorySelection.java
2020-02-21 15:58:39 -08:00

20 lines
350 B
Java

package org.kohsuke.github;
import java.util.Locale;
/**
* App installation repository selection.
*
* @see GHAppInstallation
*/
public enum GHRepositorySelection {
SELECTED, ALL;
/**
* Returns GitHub's internal representation of this event.
*/
String symbol() {
return name().toLowerCase(Locale.ENGLISH);
}
}