This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version='1.0' encoding='UTF-8'?> | |
| <gexf xmlns="http://gexf.net/1.3" version="1.3" xmlns:viz="http://gexf.net/1.3/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://gexf.net/1.3 http://gexf.net/1.3/gexf.xsd"> | |
| <meta lastmodifieddate="2023-02-05"> | |
| <creator>Gephi 0.10.0</creator> | |
| <title></title> | |
| <description></description> | |
| </meta> | |
| <graph defaultedgetype="undirected" mode="static"> | |
| <attributes class="node" mode="static"> | |
| <attribute id="modularity_class" title="Modularity Class" type="integer"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version='1.0' encoding='UTF-8'?> | |
| <gexf xmlns="http://gexf.net/1.3" version="1.3" xmlns:viz="http://gexf.net/1.3/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://gexf.net/1.3 http://gexf.net/1.3/gexf.xsd"> | |
| <meta lastmodifieddate="2022-09-26"> | |
| <creator>Gephi 0.9.3</creator> | |
| <description></description> | |
| </meta> | |
| <graph defaultedgetype="undirected" mode="static"> | |
| <attributes class="node" mode="static"> | |
| <attribute id="code" title="Code" type="string"/> | |
| <attribute id="city" title="City" type="string"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version='1.0' encoding='UTF-8'?> | |
| <gexf xmlns="http://gexf.net/1.3" version="1.3" xmlns:viz="http://gexf.net/1.3/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://gexf.net/1.3 http://gexf.net/1.3/gexf.xsd"> | |
| <meta lastmodifieddate="2022-09-24"> | |
| <creator>Gephi 0.9.3</creator> | |
| <description></description> | |
| </meta> | |
| <graph defaultedgetype="undirected" mode="static"> | |
| <attributes class="node" mode="static"> | |
| <attribute id="modularity_class" title="Modularity Class" type="integer"/> | |
| </attributes> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| val writer: StoreWriter = PalDB.createWriter(new File("store.paldb")); | |
| writer.put("foo", "bar"); | |
| writer.put(1213, Array(1, 2, 3)); | |
| writer.close(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| val reader: StoreReader = PalDB.createReader(new File("store.paldb")); | |
| val val1: String = reader.get("foo"); | |
| var val2: Array[Int] = reader.get(1213); | |
| reader.close(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| StoreReader reader = PalDB.createReader(new File("store.paldb")); | |
| String val1 = reader.get("foo"); | |
| int[] val2 = reader.get(1213); | |
| reader.close(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| StoreWriter writer = PalDB.createWriter(new File("store.paldb")); | |
| writer.put("foo", "bar"); | |
| writer.put(1213, new int[] {1, 2, 3}); | |
| writer.close(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.gephi.example; | |
| import java.awt.Color; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import org.gephi.data.attributes.api.AttributeColumn; | |
| import org.gephi.data.attributes.api.AttributeController; | |
| import org.gephi.data.attributes.api.AttributeModel; | |
| import org.gephi.filters.api.FilterController; | |
| import org.gephi.filters.api.Query; |