Package org.projectnessie.model
Interface Conflict
-
@Immutable public interface Conflict
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classConflict.ConflictType
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static Conflictconflict(Conflict.ConflictType conflictType, ContentKey key, java.lang.String message)Conflict.ConflictTypeconflictType()ContentKeykey()java.lang.Stringmessage()
-
-
-
Method Detail
-
conflictType
@Parameter(order=1) @Nullable @Nullable Conflict.ConflictType conflictType()
-
key
@Parameter(order=2) @Nullable @Nullable ContentKey key()
-
message
@Parameter(order=3) java.lang.String message()
-
conflict
static Conflict conflict(@Nullable @Nullable Conflict.ConflictType conflictType, @Nullable @Nullable ContentKey key, java.lang.String message)
-
-