mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-21 15:50:49 +00:00
18 lines
335 B
Java
18 lines
335 B
Java
package org.kohsuke.github;
|
|
|
|
import java.util.Locale;
|
|
|
|
/**
|
|
* This was added during preview API period but it has changed since then.
|
|
*
|
|
* @author Kohsuke Kawaguchi
|
|
*/
|
|
@Deprecated
|
|
public enum EnforcementLevel {
|
|
OFF, NON_ADMINS, EVERYONE;
|
|
|
|
public String toString() {
|
|
return name().toLowerCase(Locale.ENGLISH);
|
|
}
|
|
}
|