public final class org.hibernate.validator.internal.engine.path.PathImpl extends java.lang.Object implements jakarta.validation.Path, java.io.Serializable
{
private static final long serialVersionUID;
private static final org.hibernate.validator.internal.util.logging.Log LOG;
private static final java.lang.String PROPERTY_PATH_SEPARATOR;
private static final java.lang.String LEADING_PROPERTY_GROUP;
private static final java.lang.String OPTIONAL_INDEX_GROUP;
private static final java.lang.String REMAINING_PROPERTY_STRING;
private static final java.util.regex.Pattern PATH_PATTERN;
private static final int PROPERTY_NAME_GROUP;
private static final int INDEXED_GROUP;
private static final int INDEX_GROUP;
private static final int REMAINING_STRING_GROUP;
private java.util.List nodeList;
private boolean nodeListRequiresCopy;
private org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode;
private int hashCode;
public static org.hibernate.validator.internal.engine.path.PathImpl createPathFromString(java.lang.String)
{
org.hibernate.validator.internal.engine.path.PathImpl v, v;
org.hibernate.validator.internal.util.logging.Messages v;
int v;
java.lang.String v, v;
v := @parameter: java.lang.String;
v = <org.hibernate.validator.internal.util.logging.Messages: org.hibernate.validator.internal.util.logging.Messages MESSAGES>;
v = interfaceinvoke v.<org.hibernate.validator.internal.util.logging.Messages: java.lang.String propertyPathCannotBeNull()>();
staticinvoke <org.hibernate.validator.internal.util.Contracts: void assertNotNull(java.lang.Object,java.lang.String)>(v, v);
v = virtualinvoke v.<java.lang.String: int length()>();
if v != 0 goto label;
v = staticinvoke <org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.PathImpl createRootPath()>();
return v;
label:
v = staticinvoke <org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.PathImpl parseProperty(java.lang.String)>(v);
return v;
}
public static org.hibernate.validator.internal.engine.path.PathImpl createPathForExecutable(org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData)
{
org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData v;
java.lang.Class[] v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.lang.String v, v;
jakarta.validation.ElementKind v, v;
v := @parameter: org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData;
staticinvoke <org.hibernate.validator.internal.util.Contracts: void assertNotNull(java.lang.Object,java.lang.String)>(v, "A method is required to create a method return value path.");
v = staticinvoke <org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.PathImpl createRootPath()>();
v = virtualinvoke v.<org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData: jakarta.validation.ElementKind getKind()>();
v = <jakarta.validation.ElementKind: jakarta.validation.ElementKind CONSTRUCTOR>;
if v != v goto label;
v = virtualinvoke v.<org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData: java.lang.String getName()>();
v = virtualinvoke v.<org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData: java.lang.Class[] getParameterTypes()>();
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl addConstructorNode(java.lang.String,java.lang.Class[])>(v, v);
goto label;
label:
v = virtualinvoke v.<org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData: java.lang.String getName()>();
v = virtualinvoke v.<org.hibernate.validator.internal.metadata.aggregated.ExecutableMetaData: java.lang.Class[] getParameterTypes()>();
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl addMethodNode(java.lang.String,java.lang.Class[])>(v, v);
label:
return v;
}
public static org.hibernate.validator.internal.engine.path.PathImpl createRootPath()
{
org.hibernate.validator.internal.engine.path.PathImpl v;
v = new org.hibernate.validator.internal.engine.path.PathImpl;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void <init>()>();
virtualinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl addBeanNode()>();
return v;
}
public static org.hibernate.validator.internal.engine.path.PathImpl createCopy(org.hibernate.validator.internal.engine.path.PathImpl)
{
org.hibernate.validator.internal.engine.path.PathImpl v, v;
v := @parameter: org.hibernate.validator.internal.engine.path.PathImpl;
v = new org.hibernate.validator.internal.engine.path.PathImpl;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void <init>(org.hibernate.validator.internal.engine.path.PathImpl)>(v);
return v;
}
public static org.hibernate.validator.internal.engine.path.PathImpl createCopyWithoutLeafNode(org.hibernate.validator.internal.engine.path.PathImpl)
{
org.hibernate.validator.internal.engine.path.PathImpl v, v;
java.util.List v, v, v;
int v, v;
v := @parameter: org.hibernate.validator.internal.engine.path.PathImpl;
v = new org.hibernate.validator.internal.engine.path.PathImpl;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
v = interfaceinvoke v.<java.util.List: java.util.List subList(int,int)>(0, v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void <init>(java.util.List)>(v);
return v;
}
public boolean isRootPath()
{
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v;
int v;
java.lang.Object v;
java.lang.String v;
boolean v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
if v != 1 goto label;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: java.lang.Object get(int)>(0);
v = interfaceinvoke v.<jakarta.validation.Path$Node: java.lang.String getName()>();
if v != null goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl addPropertyNode(java.lang.String)
{
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
java.lang.String v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.String;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl createPropertyNode(java.lang.String,org.hibernate.validator.internal.engine.path.NodeImpl)>(v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl addContainerElementNode(java.lang.String)
{
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
java.lang.String v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.String;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl createContainerElementNode(java.lang.String,org.hibernate.validator.internal.engine.path.NodeImpl)>(v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl addParameterNode(java.lang.String, int)
{
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
int v;
java.lang.String v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.String;
v := @parameter: int;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl createParameterNode(java.lang.String,org.hibernate.validator.internal.engine.path.NodeImpl,int)>(v, v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl addCrossParameterNode()
{
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl createCrossParameterNode(org.hibernate.validator.internal.engine.path.NodeImpl)>(v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl addBeanNode()
{
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl createBeanNode(org.hibernate.validator.internal.engine.path.NodeImpl)>(v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl addReturnValueNode()
{
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl createReturnValue(org.hibernate.validator.internal.engine.path.NodeImpl)>(v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
private org.hibernate.validator.internal.engine.path.NodeImpl addConstructorNode(java.lang.String, java.lang.Class[])
{
java.lang.Class[] v;
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
java.lang.String v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.String;
v := @parameter: java.lang.Class[];
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl createConstructorNode(java.lang.String,org.hibernate.validator.internal.engine.path.NodeImpl,java.lang.Class[])>(v, v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
private org.hibernate.validator.internal.engine.path.NodeImpl addMethodNode(java.lang.String, java.lang.Class[])
{
java.lang.Class[] v;
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
java.lang.String v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.String;
v := @parameter: java.lang.Class[];
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl createMethodNode(java.lang.String,org.hibernate.validator.internal.engine.path.NodeImpl,java.lang.Class[])>(v, v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl makeLeafNodeIterable()
{
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v;
int v, v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl makeIterable(org.hibernate.validator.internal.engine.path.NodeImpl)>(v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: java.lang.Object set(int,java.lang.Object)>(v, v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl makeLeafNodeIterableAndSetIndex(java.lang.Integer)
{
java.lang.Integer v;
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v;
int v, v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.Integer;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl makeIterableAndSetIndex(org.hibernate.validator.internal.engine.path.NodeImpl,java.lang.Integer)>(v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: java.lang.Object set(int,java.lang.Object)>(v, v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl makeLeafNodeIterableAndSetMapKey(java.lang.Object)
{
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v;
int v, v;
java.lang.Object v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.Object;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl makeIterableAndSetMapKey(org.hibernate.validator.internal.engine.path.NodeImpl,java.lang.Object)>(v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: java.lang.Object set(int,java.lang.Object)>(v, v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl setLeafNodeValueIfRequired(java.lang.Object)
{
org.hibernate.validator.internal.engine.path.PathImpl v;
int v, v;
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v, v, v;
java.util.List v, v;
java.lang.Object v;
jakarta.validation.ElementKind v, v, v, v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.Object;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = virtualinvoke v.<org.hibernate.validator.internal.engine.path.NodeImpl: jakarta.validation.ElementKind getKind()>();
v = <jakarta.validation.ElementKind: jakarta.validation.ElementKind PROPERTY>;
if v == v goto label;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = virtualinvoke v.<org.hibernate.validator.internal.engine.path.NodeImpl: jakarta.validation.ElementKind getKind()>();
v = <jakarta.validation.ElementKind: jakarta.validation.ElementKind CONTAINER_ELEMENT>;
if v != v goto label;
label:
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl setPropertyValue(org.hibernate.validator.internal.engine.path.NodeImpl,java.lang.Object)>(v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: java.lang.Object set(int,java.lang.Object)>(v, v);
label:
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public org.hibernate.validator.internal.engine.path.NodeImpl setLeafNodeTypeParameter(java.lang.Class, java.lang.Integer)
{
java.lang.Integer v;
org.hibernate.validator.internal.engine.path.NodeImpl v, v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v;
int v, v;
java.lang.Class v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.Class;
v := @parameter: java.lang.Integer;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v = staticinvoke <org.hibernate.validator.internal.engine.path.NodeImpl: org.hibernate.validator.internal.engine.path.NodeImpl setTypeParameter(org.hibernate.validator.internal.engine.path.NodeImpl,java.lang.Class,java.lang.Integer)>(v, v, v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
interfaceinvoke v.<java.util.List: java.lang.Object set(int,java.lang.Object)>(v, v);
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public void removeLeafNode()
{
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v, v, v, v, v;
int v, v, v, v;
java.lang.Object v;
boolean v, v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: boolean isEmpty()>();
if v != 0 goto label;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void requiresWriteableNodeList()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
interfaceinvoke v.<java.util.List: java.lang.Object remove(int)>(v);
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: boolean isEmpty()>();
if v != 0 goto label;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
v = interfaceinvoke v.<java.util.List: java.lang.Object get(int)>(v);
label:
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: void resetHashCode()>();
label:
return;
}
public org.hibernate.validator.internal.engine.path.NodeImpl getLeafNode()
{
org.hibernate.validator.internal.engine.path.NodeImpl v;
org.hibernate.validator.internal.engine.path.PathImpl v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
return v;
}
public java.util.Iterator iterator()
{
java.util.Iterator v, v, v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v, v, v, v, v, v;
int v, v, v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
if v != 0 goto label;
v = staticinvoke <java.util.Collections: java.util.List emptyList()>();
v = interfaceinvoke v.<java.util.List: java.util.Iterator iterator()>();
return v;
label:
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
if v != 1 goto label;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: java.util.Iterator iterator()>();
return v;
label:
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = interfaceinvoke v.<java.util.List: java.util.List subList(int,int)>(1, v);
v = interfaceinvoke v.<java.util.List: java.util.Iterator iterator()>();
return v;
}
public java.lang.String asString()
{
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v;
int v, v;
java.lang.Object v;
java.lang.StringBuilder v;
java.lang.String v, v, v;
boolean v, v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = new java.lang.StringBuilder;
specialinvoke v.<java.lang.StringBuilder: void <init>()>();
v = 1;
v = 1;
label:
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
if v >= v goto label;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: java.lang.Object get(int)>(v);
v = virtualinvoke v.<org.hibernate.validator.internal.engine.path.NodeImpl: java.lang.String asString()>();
v = virtualinvoke v.<java.lang.String: boolean isEmpty()>();
if v != 0 goto label;
if v != 0 goto label;
virtualinvoke v.<java.lang.StringBuilder: java.lang.StringBuilder append(java.lang.String)>(".");
label:
v = virtualinvoke v.<org.hibernate.validator.internal.engine.path.NodeImpl: java.lang.String asString()>();
virtualinvoke v.<java.lang.StringBuilder: java.lang.StringBuilder append(java.lang.String)>(v);
v = 0;
label:
v = v + 1;
goto label;
label:
v = virtualinvoke v.<java.lang.StringBuilder: java.lang.String toString()>();
return v;
}
private void requiresWriteableNodeList()
{
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v;
int v, v;
boolean v;
java.util.ArrayList v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: boolean nodeListRequiresCopy>;
if v != 0 goto label;
return;
label:
v = new java.util.ArrayList;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v + 1;
specialinvoke v.<java.util.ArrayList: void <init>(int)>(v);
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
interfaceinvoke v.<java.util.List: boolean addAll(java.util.Collection)>(v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList> = v;
v.<org.hibernate.validator.internal.engine.path.PathImpl: boolean nodeListRequiresCopy> = 0;
return;
}
public java.lang.String toString()
{
org.hibernate.validator.internal.engine.path.PathImpl v;
java.lang.String v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = virtualinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: java.lang.String asString()>();
return v;
}
public boolean equals(java.lang.Object)
{
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v, v, v;
java.lang.Class v, v;
java.lang.Object v;
boolean v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.lang.Object;
if v != v goto label;
return 1;
label:
if v != null goto label;
return 0;
label:
v = virtualinvoke v.<java.lang.Object: java.lang.Class getClass()>();
v = virtualinvoke v.<java.lang.Object: java.lang.Class getClass()>();
if v == v goto label;
return 0;
label:
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
if v != null goto label;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
if v == null goto label;
return 0;
label:
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: boolean equals(java.lang.Object)>(v);
if v != 0 goto label;
return 0;
label:
return 1;
}
public int hashCode()
{
org.hibernate.validator.internal.engine.path.PathImpl v;
int v, v, v, v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: int hashCode>;
v = (int) -1;
if v != v goto label;
v = specialinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: int buildHashCode()>();
v.<org.hibernate.validator.internal.engine.path.PathImpl: int hashCode> = v;
label:
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: int hashCode>;
return v;
}
private int buildHashCode()
{
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v, v;
int v, v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
if v != null goto label;
v = 0;
goto label;
label:
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v = interfaceinvoke v.<java.util.List: int hashCode()>();
label:
v = 31 + v;
return v;
}
private void <init>(org.hibernate.validator.internal.engine.path.PathImpl)
{
org.hibernate.validator.internal.engine.path.NodeImpl v;
org.hibernate.validator.internal.engine.path.PathImpl v, v;
java.util.List v;
int v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: org.hibernate.validator.internal.engine.path.PathImpl;
specialinvoke v.<java.lang.Object: void <init>()>();
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList>;
v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode>;
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = v.<org.hibernate.validator.internal.engine.path.PathImpl: int hashCode>;
v.<org.hibernate.validator.internal.engine.path.PathImpl: int hashCode> = v;
v.<org.hibernate.validator.internal.engine.path.PathImpl: boolean nodeListRequiresCopy> = 1;
return;
}
private void <init>()
{
int v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.ArrayList v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
specialinvoke v.<java.lang.Object: void <init>()>();
v = new java.util.ArrayList;
specialinvoke v.<java.util.ArrayList: void <init>(int)>(1);
v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList> = v;
v = (int) -1;
v.<org.hibernate.validator.internal.engine.path.PathImpl: int hashCode> = v;
v.<org.hibernate.validator.internal.engine.path.PathImpl: boolean nodeListRequiresCopy> = 0;
return;
}
private void <init>(java.util.List)
{
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.List v;
int v, v, v;
java.lang.Object v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v := @parameter: java.util.List;
specialinvoke v.<java.lang.Object: void <init>()>();
v.<org.hibernate.validator.internal.engine.path.PathImpl: java.util.List nodeList> = v;
v = interfaceinvoke v.<java.util.List: int size()>();
v = v - 1;
v = interfaceinvoke v.<java.util.List: java.lang.Object get(int)>(v);
v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl currentLeafNode> = v;
v = (int) -1;
v.<org.hibernate.validator.internal.engine.path.PathImpl: int hashCode> = v;
v.<org.hibernate.validator.internal.engine.path.PathImpl: boolean nodeListRequiresCopy> = 1;
return;
}
private void resetHashCode()
{
int v;
org.hibernate.validator.internal.engine.path.PathImpl v;
v := @this: org.hibernate.validator.internal.engine.path.PathImpl;
v = (int) -1;
v.<org.hibernate.validator.internal.engine.path.PathImpl: int hashCode> = v;
return;
}
private static org.hibernate.validator.internal.engine.path.PathImpl parseProperty(java.lang.String)
{
java.lang.Integer v;
org.hibernate.validator.internal.engine.path.PathImpl v;
java.util.regex.Matcher v;
int v, v;
java.lang.String v, v, v, v, v;
boolean v, v, v;
java.lang.NumberFormatException v;
java.lang.IllegalArgumentException v, v;
org.hibernate.validator.internal.engine.path.NodeImpl v;
java.util.regex.Pattern v;
org.hibernate.validator.internal.util.logging.Log v, v;
v := @parameter: java.lang.String;
v = staticinvoke <org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.PathImpl createRootPath()>();
v = v;
label:
v = <org.hibernate.validator.internal.engine.path.PathImpl: java.util.regex.Pattern PATH_PATTERN>;
v = virtualinvoke v.<java.util.regex.Pattern: java.util.regex.Matcher matcher(java.lang.CharSequence)>(v);
v = virtualinvoke v.<java.util.regex.Matcher: boolean matches()>();
if v == 0 goto label;
v = virtualinvoke v.<java.util.regex.Matcher: java.lang.String group(int)>(1);
v = staticinvoke <org.hibernate.validator.internal.engine.path.PathImpl: boolean isValidJavaIdentifier(java.lang.String)>(v);
if v != 0 goto label;
v = <org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.util.logging.Log LOG>;
v = interfaceinvoke v.<org.hibernate.validator.internal.util.logging.Log: java.lang.IllegalArgumentException getInvalidJavaIdentifierException(java.lang.String)>(v);
throw v;
label:
virtualinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl addPropertyNode(java.lang.String)>(v);
v = virtualinvoke v.<java.util.regex.Matcher: java.lang.String group(int)>(2);
if v == null goto label;
virtualinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl makeLeafNodeIterable()>();
label:
v = virtualinvoke v.<java.util.regex.Matcher: java.lang.String group(int)>(3);
if v == null goto label;
v = virtualinvoke v.<java.lang.String: int length()>();
if v <= 0 goto label;
label:
v = staticinvoke <java.lang.Integer: int parseInt(java.lang.String)>(v);
v = staticinvoke <java.lang.Integer: java.lang.Integer valueOf(int)>(v);
virtualinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl makeLeafNodeIterableAndSetIndex(java.lang.Integer)>(v);
label:
goto label;
label:
v := @caughtexception;
virtualinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl makeLeafNodeIterableAndSetMapKey(java.lang.Object)>(v);
label:
v = virtualinvoke v.<java.util.regex.Matcher: java.lang.String group(int)>(5);
goto label;
label:
v = <org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.util.logging.Log LOG>;
v = interfaceinvoke v.<org.hibernate.validator.internal.util.logging.Log: java.lang.IllegalArgumentException getUnableToParsePropertyPathException(java.lang.String)>(v);
throw v;
label:
if v != null goto label;
v = virtualinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl getLeafNode()>();
v = virtualinvoke v.<org.hibernate.validator.internal.engine.path.NodeImpl: boolean isIterable()>();
if v == 0 goto label;
virtualinvoke v.<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.engine.path.NodeImpl addBeanNode()>();
label:
return v;
catch java.lang.NumberFormatException from label to label with label;
}
private static boolean isValidJavaIdentifier(java.lang.String)
{
char v, v;
int v, v, v;
java.lang.String v;
boolean v, v;
v := @parameter: java.lang.String;
staticinvoke <org.hibernate.validator.internal.util.Contracts: void assertNotNull(java.lang.Object,java.lang.String)>(v, "identifier param cannot be null");
v = virtualinvoke v.<java.lang.String: int length()>();
if v == 0 goto label;
v = virtualinvoke v.<java.lang.String: char charAt(int)>(0);
v = staticinvoke <java.lang.Character: boolean isJavaIdentifierStart(int)>(v);
if v != 0 goto label;
label:
return 0;
label:
v = 1;
label:
v = virtualinvoke v.<java.lang.String: int length()>();
if v >= v goto label;
v = virtualinvoke v.<java.lang.String: char charAt(int)>(v);
v = staticinvoke <java.lang.Character: boolean isJavaIdentifierPart(int)>(v);
if v != 0 goto label;
return 0;
label:
v = v + 1;
goto label;
label:
return 1;
}
static void <clinit>()
{
java.lang.invoke.MethodHandles$Lookup v;
java.util.regex.Pattern v;
org.hibernate.validator.internal.util.logging.Log v;
v = staticinvoke <java.lang.invoke.MethodHandles: java.lang.invoke.MethodHandles$Lookup lookup()>();
v = staticinvoke <org.hibernate.validator.internal.util.logging.LoggerFactory: org.hibernate.validator.internal.util.logging.Log make(java.lang.invoke.MethodHandles$Lookup)>(v);
<org.hibernate.validator.internal.engine.path.PathImpl: org.hibernate.validator.internal.util.logging.Log LOG> = v;
v = staticinvoke <java.util.regex.Pattern: java.util.regex.Pattern compile(java.lang.String)>("([^\\[\\.]+)(\\[(\\w*)\\])?(\\.(.*))*");
<org.hibernate.validator.internal.engine.path.PathImpl: java.util.regex.Pattern PATH_PATTERN> = v;
return;
}
}