Lorenz, with regards,
Is it mandatory to use : if( Value == null)
I mean every property will have a value. In my case, the property supposed
to have three values so I need:
if (Value=="Value1")
//do this
if (Value=="Value2")
//do this
else
// do this
However, in general case, I want to ask if we have or expected to have a
null value, can we do some operation on it or just we display a message to
user that value is null?
if( Value == null)
JOptionPane.showMessageDialog(null, "Value is null");
On Tue, Nov 22, 2016 at 3:59 PM, Lorenz B. <
Post by Lorenz B.Post by Sidra shahHello Lorenz thanks,
RDFNode Value =individual.getPropertyValue(myPropertyName);
if (Value=="PropertyValue")
No, more the other case indeed such that don't have to "know" the value,
i.e.
if( Value == null) {
} else {
}
Post by Sidra shah//
On Tue, Nov 22, 2016 at 3:36 PM, Lorenz B. <
Post by Lorenz B.You can use Individual::getPropertyValue, see [1]
[1]
https://jena.apache.org/documentation/javadoc/jena/
org/apache/jena/ontology/OntResource.html#getPropertyValue-org.apache.
jena.rdf.model.Property-
Post by Sidra shahDoes Jena have hasOntProperty() like we have hasOntClass()? In my
project I
Post by Sidra shahneed something like if instance/individual has "this property value",
do
Post by Sidra shahPost by Lorenz B.Post by Sidra shahsome operation.
Thank you for your time.
--
Lorenz BÃŒhmann
AKSW group, University of Leipzig
Group: http://aksw.org - semantic web research center
--
Lorenz BÃŒhmann
AKSW group, University of Leipzig
Group: http://aksw.org - semantic web research center