mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
28 lines
984 B
Plaintext
Vendored
28 lines
984 B
Plaintext
Vendored
@java.lang.annotation.Retention
|
|
public annotation class Anno {
|
|
public abstract method b(): byte
|
|
public abstract method ba(): byte[]
|
|
public abstract method c(): char
|
|
public abstract method ca(): char[]
|
|
public abstract method d(): double
|
|
public abstract method da(): double[]
|
|
public abstract method f(): float
|
|
public abstract method fa(): float[]
|
|
public abstract method i(): int
|
|
public abstract method ia(): int[]
|
|
public abstract method j(): long
|
|
public abstract method ja(): long[]
|
|
public abstract method s(): short
|
|
public abstract method sa(): short[]
|
|
public abstract method str(): java.lang.String
|
|
public abstract method stra(): java.lang.String[]
|
|
public abstract method z(): boolean
|
|
public abstract method za(): boolean[]
|
|
}
|
|
|
|
|
|
public final class PrimitivesAndArraysKt {
|
|
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
|
public final static @Anno method foo(): void
|
|
}
|