mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-06 11:29:30 +00:00
Change fhir:value to fhir:v.
This commit is contained in:
parent
df2a768778
commit
604fbfe47b
@ -30,7 +30,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
decorateCode(t, value);
|
||||
}
|
||||
@ -40,7 +40,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -48,7 +48,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -56,7 +56,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
decorateCode(t, value);
|
||||
}
|
||||
@ -65,7 +65,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -73,7 +73,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -81,7 +81,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -89,7 +89,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -97,7 +97,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -105,7 +105,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -113,7 +113,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -121,7 +121,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -129,7 +129,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -137,7 +137,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -145,7 +145,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -153,7 +153,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -161,7 +161,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -169,7 +169,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -177,7 +177,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -185,7 +185,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
@ -193,7 +193,7 @@ public class RdfParser extends RdfParserBase {
|
||||
if (value == null)
|
||||
return;
|
||||
Complex t = parent.predicate("fhir:"+parentType+"."+name);
|
||||
t.predicate("fhir:value", ttlLiteral(value.asStringValue()));
|
||||
t.predicate("fhir:v", ttlLiteral(value.asStringValue()));
|
||||
composeElement(t, parentType, name, value, index);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user