helix.graph.model
Interface Registry

All Known Subinterfaces:
Edge, Graph, GraphElement, Vertex
All Known Implementing Classes:
AbstractGraph, AbstractRegistry, DelegateRegistry, MemEdge, MemGraph, MemRegistry, MemVertex

public interface Registry

A Registry keeps pairs of (key, value) key : String value : RegistryValue


Field Summary
static String Color
           
static String Colors
           
static String Comment
           
static String IsDirect
           
static String Label
           
static String Orientation
           
static String Rank
           
 
Method Summary
 void copy(Registry source)
           
 RegistryValue get(String key)
           
 boolean has(String key)
           
 Iterable<String> keys()
           
 Registry registry()
           
 void remove(String key)
           
 void set(String key)
           
 void set(String key, boolean value)
           
 void set(String key, float value)
           
 void set(String key, int value)
           
 void set(String key, RegistryValue value)
           
 void set(String key, String value)
           
 

Field Detail

Label

static final String Label
See Also:
Constant Field Values

Comment

static final String Comment
See Also:
Constant Field Values

Colors

static final String Colors
See Also:
Constant Field Values

Color

static final String Color
See Also:
Constant Field Values

Rank

static final String Rank
See Also:
Constant Field Values

Orientation

static final String Orientation
See Also:
Constant Field Values

IsDirect

static final String IsDirect
See Also:
Constant Field Values
Method Detail

registry

Registry registry()

has

boolean has(String key)

get

RegistryValue get(String key)

set

void set(String key,
         RegistryValue value)

set

void set(String key)

remove

void remove(String key)

keys

Iterable<String> keys()

copy

void copy(Registry source)

set

void set(String key,
         String value)

set

void set(String key,
         int value)

set

void set(String key,
         float value)

set

void set(String key,
         boolean value)