Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KaEnumEntryAnnotationValue (0.32 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

     *   * integer types,
     *   * string type,
     *   * enum types,
     *   * other annotation types, and
     *   * array of aforementioned types
     *
     *  [KaConstantAnnotationValue]  covers first two kinds;
     *  [KaEnumEntryAnnotationValue] corresponds to enum types;
     *  [KaAnnotationApplicationValue] represents annotation types (with annotation fq name and arguments); and
     *  [KaArrayAnnotationValue] abstracts an array of [KaAnnotationValue]s.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValueRenderer.kt

                    renderAnnotationConstantValue(value)
                }
                is KaArrayAnnotationValue -> {
                    renderArrayConstantValue(value)
                }
                is KaEnumEntryAnnotationValue -> {
                    renderEnumEntryConstantValue(value)
                }
                is KaConstantAnnotationValue -> {
                    renderConstantAnnotationValue(value)
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top