import { JavaClass, BasicOrJavaType } from "java-bridge"; import { Enum as java_lang_Enum } from "./../../lang/Enum"; import { Class as java_lang_Class } from "./../../lang/Class"; import { Long as java_lang_Long } from "./../../lang/Long"; import { Integer as java_lang_Integer } from "./../../lang/Integer"; /** * This class just defines types, you should import FormatStyle instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class FormatStyleClass extends JavaClass { /** * Original type: 'java.time.format.FormatStyle' */ static readonly FULL: FormatStyleClass | null; /** * Original type: 'java.time.format.FormatStyle' */ static readonly LONG: FormatStyleClass | null; /** * Original type: 'java.time.format.FormatStyle' */ static readonly MEDIUM: FormatStyleClass | null; /** * Original type: 'java.time.format.FormatStyle' */ static readonly SHORT: FormatStyleClass | null; /** * @return original return type: 'java.time.format.FormatStyle[]' */ static values(): Promise<(FormatStyle | null)[] | null>; /** * @return original return type: 'java.time.format.FormatStyle[]' */ static valuesSync(): (FormatStyle | null)[] | null; /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.time.format.FormatStyle' */ static valueOf(var0: string | null): Promise; /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.time.format.FormatStyle' */ static valueOfSync(var0: string | null): FormatStyle | null; /** * @param var0 original type: 'java.lang.Class' * @param var1 original type: 'java.lang.String' * @return original return type: 'java.lang.Enum' */ static valueOf(var0: java_lang_Class | null, var1: string | null): Promise; /** * @param var0 original type: 'java.lang.Class' * @param var1 original type: 'java.lang.String' * @return original return type: 'java.lang.Enum' */ static valueOfSync(var0: java_lang_Class | null, var1: string | null): java_lang_Enum | null; /** * @return original return type: 'java.lang.String' */ name(): Promise; /** * @return original return type: 'java.lang.String' */ nameSync(): string | null; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'boolean' */ equals(var0: BasicOrJavaType | null): Promise; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'boolean' */ equalsSync(var0: BasicOrJavaType | null): boolean; /** * @return original return type: 'java.lang.String' */ toString(): Promise; /** * @return original return type: 'java.lang.String' */ toStringSync(): string; /** * @return original return type: 'int' */ hashCode(): Promise; /** * @return original return type: 'int' */ hashCodeSync(): number; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'int' */ compareTo(var0: BasicOrJavaType | null): Promise; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'int' */ compareToSync(var0: BasicOrJavaType | null): number; /** * @param var0 original type: 'java.lang.Enum' * @return original return type: 'int' */ compareTo(var0: java_lang_Enum | null): Promise; /** * @param var0 original type: 'java.lang.Enum' * @return original return type: 'int' */ compareToSync(var0: java_lang_Enum | null): number; /** * @return original return type: 'java.lang.Class' */ getDeclaringClass(): Promise; /** * @return original return type: 'java.lang.Class' */ getDeclaringClassSync(): java_lang_Class | null; /** * @return original return type: 'int' */ ordinal(): Promise; /** * @return original return type: 'int' */ ordinalSync(): number; /** * @param var0 original type: 'long' * @param var1 original type: 'int' * @return original return type: 'void' */ wait(var0: java_lang_Long | bigint | number, var1: java_lang_Integer | number): Promise; /** * @param var0 original type: 'long' * @param var1 original type: 'int' * @return original return type: 'void' */ waitSync(var0: java_lang_Long | bigint | number, var1: java_lang_Integer | number): void; /** * @param var0 original type: 'long' * @return original return type: 'void' */ wait(var0: java_lang_Long | bigint | number): Promise; /** * @param var0 original type: 'long' * @return original return type: 'void' */ waitSync(var0: java_lang_Long | bigint | number): void; /** * @return original return type: 'void' */ wait(): Promise; /** * @return original return type: 'void' */ waitSync(): void; /** * @return original return type: 'java.lang.Class' */ getClass(): Promise; /** * @return original return type: 'java.lang.Class' */ getClassSync(): java_lang_Class; /** * @return original return type: 'void' */ notify(): Promise; /** * @return original return type: 'void' */ notifySync(): void; /** * @return original return type: 'void' */ notifyAll(): Promise; /** * @return original return type: 'void' */ notifyAllSync(): void; } declare const FormatStyle_base: typeof FormatStyleClass; /** * Class java.time.format.FormatStyle. * * This actually imports the java class for further use. * The class FormatStyleClass only defines types, this is the class you should actually import. * Please note that this statement imports the underlying java class at runtime, which may take a while. * This was generated by java-bridge. * You should probably not edit this. */ export declare class FormatStyle extends FormatStyle_base { } export default FormatStyle; //# sourceMappingURL=FormatStyle.d.ts.map