/******************************************************************************* * Copyright (c) 2011 Guillaume Hillairet. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Guillaume Hillairet - initial API and implementation *******************************************************************************/ package com.emf4sw.rdf.vocabulary; /** * RDF vocabulary * * @author <a href="mailto:g.hillairet at gmail.com">Guillaume Hillairet</a> * @since 0.5.0 */ public final class RDF { public static final String NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"; public static final String Property = NS + "Property"; public static final String XMLLiteral = NS + "XMLLiteral"; public static final String type = NS + "type"; public static final String Bag = NS + "Bag"; public static final String Alt = NS + "Alt"; public static final String list = NS + "list"; public static final String first = NS + "first"; public static final String rest = NS + "rest"; public static final String nil = NS + "nil"; public static final String Statement = NS + "Statement"; public static final String subject = NS + "subject"; public static final String predicate = NS + "predicate"; public static final String object = NS + "object"; public static final String value = NS + "value"; }