Interface SchemaLookUpResults<S>
-
- Type Parameters:
S- The type of schema this result contains.
public interface SchemaLookUpResults<S>An interface representing the results of a schema lookup operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArtifactReferencegetArtifactReference()Retrieves the artifact reference resulting from the lookup operation.ParsedSchema<S>getParsedSchema()Retrieves the parsed schema resulting from the lookup operation.
-
-
-
Method Detail
-
getParsedSchema
ParsedSchema<S> getParsedSchema()
Retrieves the parsed schema resulting from the lookup operation.- Returns:
- A
ParsedSchemaobject containing the parsed schema of type S.
-
getArtifactReference
ArtifactReference getArtifactReference()
Retrieves the artifact reference resulting from the lookup operation.- Returns:
- A
ArtifactReferenceobject containing details of the parsed schema.
-
-