public enum VTE extends Enum<VTE>
| Enum Constant and Description | 
|---|
| BNODEA blank node. | 
| LITERALA literal. | 
| STATEMENTA statement identifier. | 
| URIA URI. | 
| Modifier and Type | Method and Description | 
|---|---|
| char | getCharCode()Return the one character code for this RDF Value type (U, L, B, or S). | 
| byte | v()Return the code for the value type. | 
| static VTE | valueOf(byte b)Return the  VTEidentified by the LOW TWO (2) bits in the caller's
 value. | 
| static VTE | valueOf(char c) | 
| static VTE | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static VTE | valueOf(org.openrdf.model.Value v)Determine the VTE based on the type of Value - URI, Literal, or BNode. | 
| static VTE[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final VTE URI
public static final VTE BNODE
public static final VTE LITERAL
public static final VTE STATEMENT
public static VTE[] values()
for (VTE c : VTE.values()) System.out.println(c);
public static VTE valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic final byte v()
public static VTE valueOf(byte b)
VTE identified by the LOW TWO (2) bits in the caller's
 value.b - The bit flags.VTE.AbstractIV.getVTE(byte)public final char getCharCode()
public static final VTE valueOf(char c)
public static final VTE valueOf(org.openrdf.model.Value v)
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.