Enum ExportToRdfParameters.Serialization
- java.lang.Object
-
- java.lang.Enum<ExportToRdfParameters.Serialization>
-
- org.topbraidlive.client.java.api.function.ExportToRdfParameters.Serialization
-
- All Implemented Interfaces:
Serializable
,Comparable<ExportToRdfParameters.Serialization>
- Enclosing class:
- ExportToRdfParameters
public static enum ExportToRdfParameters.Serialization extends Enum<ExportToRdfParameters.Serialization>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JSONLD
N3
NTriple
RDFXML
RDFXMLAbbrev
TriG
Turtle
TurtlePlus
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExportToRdfParameters.Serialization
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExportToRdfParameters.Serialization[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JSONLD
public static final ExportToRdfParameters.Serialization JSONLD
-
N3
public static final ExportToRdfParameters.Serialization N3
-
NTriple
public static final ExportToRdfParameters.Serialization NTriple
-
RDFXML
public static final ExportToRdfParameters.Serialization RDFXML
-
RDFXMLAbbrev
public static final ExportToRdfParameters.Serialization RDFXMLAbbrev
-
TriG
public static final ExportToRdfParameters.Serialization TriG
-
Turtle
public static final ExportToRdfParameters.Serialization Turtle
-
TurtlePlus
public static final ExportToRdfParameters.Serialization TurtlePlus
-
-
Method Detail
-
values
public static ExportToRdfParameters.Serialization[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExportToRdfParameters.Serialization c : ExportToRdfParameters.Serialization.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExportToRdfParameters.Serialization valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-