mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
17 lines
279 B
Kotlin
Vendored
17 lines
279 B
Kotlin
Vendored
// FQNAME: EnumClass
|
|
|
|
// FILE: EnumClass.java
|
|
enum EnumClass {
|
|
RED, GREEN, BLUE;
|
|
|
|
void someMethod() {
|
|
System.out.println("Hello, world!")
|
|
}
|
|
|
|
String getStringRepresentation() {
|
|
return this.toString();
|
|
}
|
|
}
|
|
|
|
// FILE: Anno.kt
|
|
annotation class Anno |