Class Property.Exceptions
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.structure.Property.Exceptions
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IllegalArgumentException
dataTypeOfPropertyValueNotSupported(Object val)
static IllegalArgumentException
dataTypeOfPropertyValueNotSupported(Object val, Exception rootCause)
static IllegalStateException
propertyDoesNotExist()
static IllegalStateException
propertyDoesNotExist(Element element, String key)
static IllegalArgumentException
propertyKeyCanNotBeAHiddenKey(String key)
static IllegalArgumentException
propertyKeyCanNotBeEmpty()
static IllegalArgumentException
propertyKeyCanNotBeNull()
static IllegalStateException
propertyRemovalNotSupported()
-
-
-
Method Detail
-
propertyKeyCanNotBeEmpty
public static IllegalArgumentException propertyKeyCanNotBeEmpty()
-
propertyKeyCanNotBeNull
public static IllegalArgumentException propertyKeyCanNotBeNull()
-
propertyKeyCanNotBeAHiddenKey
public static IllegalArgumentException propertyKeyCanNotBeAHiddenKey(String key)
-
propertyDoesNotExist
public static IllegalStateException propertyDoesNotExist()
-
propertyDoesNotExist
public static IllegalStateException propertyDoesNotExist(Element element, String key)
-
dataTypeOfPropertyValueNotSupported
public static IllegalArgumentException dataTypeOfPropertyValueNotSupported(Object val)
-
dataTypeOfPropertyValueNotSupported
public static IllegalArgumentException dataTypeOfPropertyValueNotSupported(Object val, Exception rootCause)
-
propertyRemovalNotSupported
public static IllegalStateException propertyRemovalNotSupported()
-
-