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

ai.stapi.graphoperations.graphLanguage.graphDescription.specific.positive.PositiveIntegerAttributeValueDescription 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.graph.attribute.attributeValue.PositiveIntegerAttributeValue;
import ai.stapi.graphoperations.graphLanguage.graphDescription.GraphDescription;
import java.util.ArrayList;
import java.util.List;

public class PositiveIntegerAttributeValueDescription extends AbstractAttributeValueDescription {

  public static final String SERIALIZATION_TYPE = "PositiveIntegerAttributeValueDescription";

  public PositiveIntegerAttributeValueDescription() {
    super(SERIALIZATION_TYPE, PositiveIntegerAttributeValue.SERIALIZATION_TYPE,
        new ArrayList<>());
  }

  public PositiveIntegerAttributeValueDescription(
      GraphDescription... childDeclarations
  ) {
    super(SERIALIZATION_TYPE, PositiveIntegerAttributeValue.SERIALIZATION_TYPE,
        childDeclarations);
  }

  public PositiveIntegerAttributeValueDescription(
      List childDeclarations
  ) {
    super(SERIALIZATION_TYPE, PositiveIntegerAttributeValue.SERIALIZATION_TYPE,
        childDeclarations);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy