01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.http.webclient;
07:
08: import org.openrdf.model.Resource;
09: import org.openrdf.model.Value;
10:
11: /**
12: * @author Herko ter Horst
13: */
14: public class ModelFunctions {
15:
16: public static final boolean isResource(Value value) {
17: return value instanceof Resource;
18: }
19:
20: }
|