| public final class C /* C*/ { |
| @org.jetbrains.annotations.Nullable() |
| private final Direction enumConst; |
| |
| @org.jetbrains.annotations.Nullable() |
| public final Direction getEnumConst();// getEnumConst() |
| |
| public C();// .ctor() |
| } |
| |
| public enum Color /* Color*/ { |
| RED, |
| GREEN, |
| BLUE; |
| |
| private final int rgb; |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() Color @org.jetbrains.annotations.NotNull() [] values();// values() |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() Color valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() kotlin.enums.EnumEntries<@org.jetbrains.annotations.NotNull() Color> getEntries();// getEntries() |
| |
| private Color(int);// .ctor(int) |
| |
| private Color(java.lang.String);// .ctor(java.lang.String) |
| |
| public final int getRgb();// getRgb() |
| } |
| |
| public enum Direction /* Direction*/ { |
| @Some() NORTH, |
| SOUTH, |
| WEST, |
| EAST; |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() Direction @org.jetbrains.annotations.NotNull() [] values();// values() |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() Direction valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() kotlin.enums.EnumEntries<@org.jetbrains.annotations.NotNull() Direction> getEntries();// getEntries() |
| |
| private Direction();// .ctor() |
| } |
| |
| public abstract enum IntArithmetics /* IntArithmetics*/ implements java.util.function.BinaryOperator<java.lang.Integer>, java.util.function.IntBinaryOperator { |
| PLUS, |
| TIMES; |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() IntArithmetics @org.jetbrains.annotations.NotNull() [] values();// values() |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() IntArithmetics valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() kotlin.enums.EnumEntries<@org.jetbrains.annotations.NotNull() IntArithmetics> getEntries();// getEntries() |
| |
| private IntArithmetics();// .ctor() |
| |
| public int applyAsInt(int, int);// applyAsInt(int, int) |
| |
| class PLUS ... |
| |
| class TIMES ... |
| } |
| |
| public abstract enum ProtocolState /* ProtocolState*/ { |
| WAITING, |
| TALKING; |
| |
| @org.jetbrains.annotations.NotNull() |
| public abstract ProtocolState signal();// signal() |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() ProtocolState @org.jetbrains.annotations.NotNull() [] values();// values() |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() ProtocolState valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) |
| |
| @org.jetbrains.annotations.NotNull() |
| public static @org.jetbrains.annotations.NotNull() kotlin.enums.EnumEntries<@org.jetbrains.annotations.NotNull() ProtocolState> getEntries();// getEntries() |
| |
| private ProtocolState();// .ctor() |
| |
| class TALKING ... |
| |
| class WAITING ... |
| } |
| |
| @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) |
| public abstract @interface Some /* Some*/ { |
| } |