Package org.projectnessie.model
Interface GetMultipleContentsResponse.ContentWithKey
-
- Enclosing interface:
- GetMultipleContentsResponse
@Immutable public static interface GetMultipleContentsResponse.ContentWithKey
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull @NotNull ContentgetContent()DocumentationgetDocumentation()@NotNull @NotNull ContentKeygetKey()static GetMultipleContentsResponse.ContentWithKeyof(ContentKey key, Content content)static GetMultipleContentsResponse.ContentWithKeyof(ContentKey key, Content content, Documentation documentation)
-
-
-
Method Detail
-
getKey
@NotNull @NotNull @Parameter(order=1) @NotNull @NotNull ContentKey getKey()
-
getContent
@NotNull @NotNull @Parameter(order=2) @NotNull @NotNull Content getContent()
-
getDocumentation
@Nullable @Nullable @Parameter(order=3) Documentation getDocumentation()
-
of
static GetMultipleContentsResponse.ContentWithKey of(ContentKey key, Content content)
-
of
static GetMultipleContentsResponse.ContentWithKey of(ContentKey key, Content content, Documentation documentation)
-
-