10 lines
444 B
Kotlin
Vendored
10 lines
444 B
Kotlin
Vendored
enum class E {
|
|
|
|
}
|
|
|
|
fun use() {
|
|
E.values<caret>()
|
|
}
|
|
|
|
//INFO: <div class='definition'><pre><a href="psi_element://E"><code>E</code></a><br>public final fun <b>values</b>(): Array<<a href="psi_element://E">E</a>></pre></div><div class='content'><p>Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.</p></div><table class='sections'></table>
|