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

org.openfuxml.content.graph.Edge Maven / Gradle / Ivy


package org.openfuxml.content.graph;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="from" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="to" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="directed" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "edge") public class Edge implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "id") protected Long id; @XmlAttribute(name = "from") protected Long from; @XmlAttribute(name = "to") protected Long to; @XmlAttribute(name = "directed") protected Boolean directed; @XmlAttribute(name = "type") protected String type; /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(long value) { this.id = value; } public boolean isSetId() { return (this.id!= null); } public void unsetId() { this.id = null; } /** * Gets the value of the from property. * * @return * possible object is * {@link Long } * */ public long getFrom() { return from; } /** * Sets the value of the from property. * * @param value * allowed object is * {@link Long } * */ public void setFrom(long value) { this.from = value; } public boolean isSetFrom() { return (this.from!= null); } public void unsetFrom() { this.from = null; } /** * Gets the value of the to property. * * @return * possible object is * {@link Long } * */ public long getTo() { return to; } /** * Sets the value of the to property. * * @param value * allowed object is * {@link Long } * */ public void setTo(long value) { this.to = value; } public boolean isSetTo() { return (this.to!= null); } public void unsetTo() { this.to = null; } /** * Gets the value of the directed property. * * @return * possible object is * {@link Boolean } * */ public boolean isDirected() { return directed; } /** * Sets the value of the directed property. * * @param value * allowed object is * {@link Boolean } * */ public void setDirected(boolean value) { this.directed = value; } public boolean isSetDirected() { return (this.directed!= null); } public void unsetDirected() { this.directed = null; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } public boolean isSetType() { return (this.type!= null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy