Uses of Enum Class
org.springframework.aot.generate.GeneratedFiles.Kind
Packages that use GeneratedFiles.Kind
Package
Description
Support classes for components that contribute generated code equivalent to a
 runtime behavior.
- 
Uses of GeneratedFiles.Kind in org.springframework.aot.generateMethods in org.springframework.aot.generate that return GeneratedFiles.KindModifier and TypeMethodDescriptionstatic GeneratedFiles.KindReturns the enum constant of this class with the specified name.static GeneratedFiles.Kind[]GeneratedFiles.Kind.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.springframework.aot.generate with parameters of type GeneratedFiles.KindModifier and TypeMethodDescriptiondefault voidGeneratedFiles.addFile(GeneratedFiles.Kind kind, String path, CharSequence content) Add a generated file of the specifiedGeneratedFiles.Kindwith content from the givenCharSequence.default voidGeneratedFiles.addFile(GeneratedFiles.Kind kind, String path, InputStreamSource content) Add a generated file of the specifiedGeneratedFiles.Kindwith content from the givenInputStreamSource.default voidGeneratedFiles.addFile(GeneratedFiles.Kind kind, String path, ThrowingConsumer<Appendable> content) Add a generated file of the specifiedGeneratedFiles.Kindwith content written to anAppendablepassed to the givenThrowingConsumer.InMemoryGeneratedFiles.getGeneratedFile(GeneratedFiles.Kind kind, String path) Return theInputStreamSourceof specified file.InMemoryGeneratedFiles.getGeneratedFileContent(GeneratedFiles.Kind kind, String path) Return the content of the specified file.InMemoryGeneratedFiles.getGeneratedFiles(GeneratedFiles.Kind kind) Return aMapof the generated files of a specificGeneratedFiles.Kind.voidFileSystemGeneratedFiles.handleFile(GeneratedFiles.Kind kind, String path, ThrowingConsumer<GeneratedFiles.FileHandler> handler) voidGeneratedFiles.handleFile(GeneratedFiles.Kind kind, String path, ThrowingConsumer<GeneratedFiles.FileHandler> handler) Handle a generated file of the specifiedGeneratedFiles.Kindwith the given handler.voidInMemoryGeneratedFiles.handleFile(GeneratedFiles.Kind kind, String path, ThrowingConsumer<GeneratedFiles.FileHandler> handler) Constructor parameters in org.springframework.aot.generate with type arguments of type GeneratedFiles.KindModifierConstructorDescriptionCreate a newFileSystemGeneratedFilesinstance with all files stored under the root provided by the givenFunction.