[LC] AbstractSymbolLightClassesLoadingTest: sort classes by name

This commit is contained in:
Dmitrii Gridin
2022-12-22 20:02:07 +01:00
committed by teamcity
parent 27ffe7c31e
commit 7196d0d809
49 changed files with 1067 additions and 1367 deletions
@@ -1,20 +1,11 @@
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface Some /* Some*/ {
}
public final class C /* C*/ {
@org.jetbrains.annotations.Nullable()
private final Direction enumConst;
public enum Direction /* Direction*/ {
@Some() NORTH,
SOUTH,
WEST,
EAST;
@org.jetbrains.annotations.Nullable()
public final Direction getEnumConst();// getEnumConst()
@org.jetbrains.annotations.NotNull()
public static Direction valueOf(java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(java.lang.String)
@org.jetbrains.annotations.NotNull()
public static Direction[] values();// values()
private Direction();// .ctor()
public C();// .ctor()
}
public enum Color /* Color*/ {
@@ -37,48 +28,19 @@ public enum Color /* Color*/ {
public final int getRgb();// getRgb()
}
public enum ProtocolState /* ProtocolState*/ {
WAITING {
WAITING();// .ctor()
public enum Direction /* Direction*/ {
@Some() NORTH,
SOUTH,
WEST,
EAST;
@org.jetbrains.annotations.NotNull()
public ProtocolState signal();// signal()
},
TALKING {
TALKING();// .ctor()
public static Direction valueOf(java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(java.lang.String)
@org.jetbrains.annotations.NotNull()
public ProtocolState signal();// signal()
};
public static Direction[] values();// values()
@org.jetbrains.annotations.NotNull()
public abstract ProtocolState signal();// signal()
@org.jetbrains.annotations.NotNull()
public static ProtocolState valueOf(java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(java.lang.String)
@org.jetbrains.annotations.NotNull()
public static ProtocolState[] values();// values()
private ProtocolState();// .ctor()
class TALKING ...
class WAITING ...
}
public static final class WAITING /* ProtocolState.WAITING*/ extends ProtocolState {
WAITING();// .ctor()
@org.jetbrains.annotations.NotNull()
public ProtocolState signal();// signal()
}
public static final class TALKING /* ProtocolState.TALKING*/ extends ProtocolState {
TALKING();// .ctor()
@org.jetbrains.annotations.NotNull()
public ProtocolState signal();// signal()
private Direction();// .ctor()
}
public enum IntArithmetics /* IntArithmetics*/ implements java.util.function.BinaryOperator<java.lang.Integer>, java.util.function.IntBinaryOperator {
@@ -117,6 +79,47 @@ public static final class PLUS /* IntArithmetics.PLUS*/ extends IntArithmetics {
public java.lang.Integer apply(int, int);// apply(int, int)
}
public enum ProtocolState /* ProtocolState*/ {
WAITING {
WAITING();// .ctor()
@org.jetbrains.annotations.NotNull()
public ProtocolState signal();// signal()
},
TALKING {
TALKING();// .ctor()
@org.jetbrains.annotations.NotNull()
public ProtocolState signal();// signal()
};
@org.jetbrains.annotations.NotNull()
public abstract ProtocolState signal();// signal()
@org.jetbrains.annotations.NotNull()
public static ProtocolState valueOf(java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(java.lang.String)
@org.jetbrains.annotations.NotNull()
public static ProtocolState[] values();// values()
private ProtocolState();// .ctor()
class TALKING ...
class WAITING ...
}
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface Some /* Some*/ {
}
public static final class TALKING /* ProtocolState.TALKING*/ extends ProtocolState {
TALKING();// .ctor()
@org.jetbrains.annotations.NotNull()
public ProtocolState signal();// signal()
}
public static final class TIMES /* IntArithmetics.TIMES*/ extends IntArithmetics {
TIMES();// .ctor()
@@ -124,12 +127,9 @@ public static final class TIMES /* IntArithmetics.TIMES*/ extends IntArithmetics
public java.lang.Integer apply(int, int);// apply(int, int)
}
public final class C /* C*/ {
@org.jetbrains.annotations.Nullable()
private final Direction enumConst;
public static final class WAITING /* ProtocolState.WAITING*/ extends ProtocolState {
WAITING();// .ctor()
@org.jetbrains.annotations.Nullable()
public final Direction getEnumConst();// getEnumConst()
public C();// .ctor()
@org.jetbrains.annotations.NotNull()
public ProtocolState signal();// signal()
}