Kotlin
sealed class Entity{ object NotFound(): Entity() data class Found(val count:Int): Entity() }
Java
//Aufruf zum Objekt new Entity.NotFound() //Aufruf der Datenklasse new Entity.Found(1)
Recommended Posts