com.buschmais.jqassistant.plugin.json.api.model.JSONArrayDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json Show documentation
Show all versions of json Show documentation
The jQAssistant JSON Plugin allows jQAssistant
to scan also RFC 7159 compliant JSON files.
package com.buschmais.jqassistant.plugin.json.api.model;
import java.util.List;
import com.buschmais.xo.neo4j.api.annotation.Label;
import com.buschmais.xo.neo4j.api.annotation.Relation;
/**
* Represents an JSON array found within a JSON document.
*/
@Label("Array")
public interface JSONArrayDescriptor extends JSONValueDescriptor {
@Relation("CONTAINS_VALUE")
List getValues();
}