Package org.gephi.io.importer.api
Interface MetadataDraft
-
public interface MetadataDraftDraft metadata, hosted by import containers to represent graph metadata.Processorswill process this metadata and set it to the workspace's metadata.Use the provided builder to create a new instance:
MetadataDraft.builder().setDescription("desc").setTitle("title").build()- Author:
- Mathieu Bastian
- See Also:
ContainerLoader,Workspace.getWorkspaceMetadata()
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMetadataDraft.Builder
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static MetadataDraft.Builderbuilder()Create a new builder.StringgetDescription()Returns the graph description.StringgetTitle()Returns the graph title.
-
-
-
Method Detail
-
builder
static MetadataDraft.Builder builder()
Create a new builder.- Returns:
- new builder
-
getTitle
String getTitle()
Returns the graph title.- Returns:
- graph title or
nullif not set
-
getDescription
String getDescription()
Returns the graph description.- Returns:
- graph description or
nullif not set
-
-