Package com.google.googlejavaformat.java
Class FormatFileCallable.Result
- java.lang.Object
-
- com.google.googlejavaformat.java.FormatFileCallable.Result
-
- Direct Known Subclasses:
AutoValue_FormatFileCallable_Result
- Enclosing class:
- FormatFileCallable
abstract static class FormatFileCallable.Result extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Result()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) booleanchanged()(package private) static FormatFileCallable.Resultcreate(@Nullable java.nio.file.Path path, java.lang.String input, @Nullable java.lang.String output, @Nullable FormatterException exception)(package private) abstract @Nullable FormatterExceptionexception()(package private) abstract java.lang.Stringinput()(package private) abstract @Nullable java.lang.Stringoutput()(package private) abstract @Nullable java.nio.file.Pathpath()
-
-
-
Method Detail
-
path
abstract @Nullable java.nio.file.Path path()
-
input
abstract java.lang.String input()
-
output
abstract @Nullable java.lang.String output()
-
changed
boolean changed()
-
exception
abstract @Nullable FormatterException exception()
-
create
static FormatFileCallable.Result create(@Nullable java.nio.file.Path path, java.lang.String input, @Nullable java.lang.String output, @Nullable FormatterException exception)
-
-