All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.buschmais.jqassistant.plugin.json.api.model.JSONArrayDescriptor Maven / Gradle / Ivy

Go to download

The jQAssistant JSON Plugin allows jQAssistant to scan also RFC 7159 compliant JSON files.

There is a newer version: 2.5.0-RC2
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy