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

ai.stapi.graphoperations.graphLanguage.graphDescription.specific.positive.AllAttributesDescription 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.GraphBaseTypes;
import ai.stapi.graphoperations.graphLanguage.graphDescription.GraphDescription;
import ai.stapi.graphoperations.graphLanguage.graphDescription.GraphDescriptionParameters;
import java.util.List;

public class AllAttributesDescription extends AbstractPositiveGraphDescription {

  public static final String SERIALIZATION_TYPE = "AllAttributesDescription";

  private AllAttributesDescriptionParameters allAttributesDescriptionParameters;

  protected AllAttributesDescription() {
  }

  public AllAttributesDescription(List childDescriptions) {
    super(AllAttributesDescription.SERIALIZATION_TYPE, GraphBaseTypes.VALUE_TYPE,
        childDescriptions);
  }

  public AllAttributesDescription(GraphDescription... childDescriptions) {
    super(AllAttributesDescription.SERIALIZATION_TYPE, GraphBaseTypes.VALUE_TYPE,
        childDescriptions);
  }

  @Override
  public GraphDescriptionParameters getParameters() {
    return this.allAttributesDescriptionParameters;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy