mirror of https://github.com/kivy/pyjnius.git
10 lines
125 B
Java
10 lines
125 B
Java
|
package org.jnius;
|
||
|
|
||
|
|
||
|
public interface InterfaceWithPublicEnum {
|
||
|
|
||
|
public enum ATTITUDE {
|
||
|
GOOD, BAD, UGLY,
|
||
|
}
|
||
|
}
|