Package org.projectnessie.model
Interface DiffResponse.DiffEntry
-
- Enclosing interface:
- DiffResponse
@Immutable public static interface DiffResponse.DiffEntry
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static DiffResponse.DiffEntrydiffEntry(ContentKey key, Content from)static DiffResponse.DiffEntrydiffEntry(ContentKey key, Content from, Content to)ContentgetFrom()ContentKeygetKey()ContentgetTo()
-
-
-
Method Detail
-
getKey
@Parameter(order=1) ContentKey getKey()
-
getFrom
@Nullable @Parameter(order=2) Content getFrom()
-
getTo
@Nullable @Parameter(order=3) Content getTo()
-
diffEntry
static DiffResponse.DiffEntry diffEntry(ContentKey key, Content from)
-
diffEntry
static DiffResponse.DiffEntry diffEntry(ContentKey key, Content from, Content to)
-
-