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

ai.stapi.graphoperations.graphLanguage.graphDescription.specific.positive.ReferenceGraphDescription Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ai.stapi.graphoperations.graphLanguage.graphDescription.specific.positive;

import ai.stapi.graphoperations.graphLanguage.graphDescription.GraphDescription;
import java.util.List;

public class ReferenceGraphDescription extends AbstractNodeDescription {

  public static final String SERIALIZATION_TYPE = "ReferenceGraphDescription";

  public ReferenceGraphDescription(
      NodeDescriptionParameters parameters,
      List graphDescriptions
  ) {
    super(SERIALIZATION_TYPE, parameters, graphDescriptions);
  }

  public ReferenceGraphDescription(NodeDescriptionParameters parameters) {
    super(SERIALIZATION_TYPE, parameters);
  }

  public ReferenceGraphDescription(String structureSerializationType) {
    super(SERIALIZATION_TYPE, new NodeDescriptionParameters(structureSerializationType));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy