Package org.projectnessie.api.v2.params
Interface ParsedReference
-
@Immutable public interface ParsedReferenceRepresents the attributes that make a reference. All components are optional, except that at least one ofname()orhashWithRelativeSpec()must be supplied.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidcheck()java.lang.StringhashWithRelativeSpec()java.lang.Stringname()static ParsedReferenceparsedReference(java.lang.String name, java.lang.String hashWithRelativeSpec, Reference.ReferenceType type)Reference.ReferenceTypetype()
-
-
-
Method Detail
-
name
@Parameter(order=1) @Nullable @Nullable java.lang.String name()
-
hashWithRelativeSpec
@Parameter(order=2) @Nullable @Nullable java.lang.String hashWithRelativeSpec()
-
type
@Parameter(order=3) @Nullable @Nullable Reference.ReferenceType type()
-
check
@Check default void check()
-
parsedReference
static ParsedReference parsedReference(@Nullable @Nullable java.lang.String name, @Nullable @Nullable java.lang.String hashWithRelativeSpec, @Nullable @Nullable Reference.ReferenceType type)
-
-