We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be possible to support GraphML-Attributes in GraphMLWriter?
GraphMLWriter
GraphMLMetadata<T> could be have two new fields:
GraphMLMetadata<T>
where the type Enum can be boolean, int, long, float, double, or string.
boolean
int
long
float
double
string
A new constructor could allow to set the above fields, otherwise null by default:
null
public GraphMLMetadata(String description, String default_value, Function<T, String> function, String name, Enum type)
The GraphMLWriter.writeKeySpecification method can be extended to support the 2 new fields.
GraphMLWriter.writeKeySpecification
The text was updated successfully, but these errors were encountered:
see jrtom#199: add support for attr.name and attr.type
8fc3cae
see jrtom#199: remove unused import; add braces
f2577f2
No branches or pull requests
Would it be possible to support GraphML-Attributes in
GraphMLWriter
?GraphMLMetadata<T>
could be have two new fields:where the type Enum can be
boolean
,int
,long
,float
,double
, orstring
.A new constructor could allow to set the above fields, otherwise
null
by default:public GraphMLMetadata(String description, String default_value, Function<T, String> function, String name, Enum type)
The
GraphMLWriter.writeKeySpecification
method can be extended to support the 2 new fields.The text was updated successfully, but these errors were encountered: