rewrite-runner
Toggle table of contents
0.16.1
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
rewrite-runner
core
/
io.github.skhokhlov.rewriterunner.plugin
/
PluginRunResult
Plugin
Run
Result
sealed
class
PluginRunResult
(
source
)
Result of attempting recipe execution through an official OpenRewrite build plugin.
Inheritors
Success
NoChanges
Failed
Skipped
Members
Types
Failed
Link copied to clipboard
data
class
Failed
(
val
reason
:
String
)
:
PluginRunResult
No
Changes
Link copied to clipboard
data
object
NoChanges
:
PluginRunResult
Skipped
Link copied to clipboard
data
class
Skipped
(
val
reason
:
String
)
:
PluginRunResult
Success
Link copied to clipboard
data
class
Success
(
val
changedFiles
:
List
<
Path
>
,
val
diffs
:
Map
<
Path
,
String
>
,
val
estimatedTimeSaved
:
Duration
?
)
:
PluginRunResult