Files
kotlin-fork/idea/testData/editor/quickDoc/OnEnumValuesFunction.kt
T
2018-07-20 18:41:04 +03:00

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&lt;<a href="psi_element://E">E</a>&gt;</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>