}
private String extractDefaultValue() {
final GraphProperty graphProperty = getAnnotation(GraphProperty.class);
if (graphProperty==null) return null;
final String value = graphProperty.defaultValue();
if (value.equals(GraphProperty.UNSET_DEFAULT)) return null;
return value;
}
@Override