mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-05 08:21:21 +00:00
20 lines
350 B
Java
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);
|
|
}
|
|
}
|