Fixed enum error
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-expression-widget@111442 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
67c708754f
commit
3e36d4a604
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="src" output="target/tabular-data-expression-widget-1.4.0-SNAPSHOT/WEB-INF/classes" path="src/main/java">
|
<classpathentry kind="src" output="target/tabular-data-expression-widget-1.5.0-SNAPSHOT/WEB-INF/classes" path="src/main/java">
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="optional" value="true"/>
|
<attribute name="optional" value="true"/>
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
</classpathentry>
|
</classpathentry>
|
||||||
<classpathentry excluding="**" kind="src" output="target/tabular-data-expression-widget-1.4.0-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
|
<classpathentry excluding="**" kind="src" output="target/tabular-data-expression-widget-1.5.0-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
|
@ -32,5 +32,5 @@
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
</classpathentry>
|
</classpathentry>
|
||||||
<classpathentry kind="output" path="target/tabular-data-expression-widget-1.4.0-SNAPSHOT/WEB-INF/classes"/>
|
<classpathentry kind="output" path="target/tabular-data-expression-widget-1.5.0-SNAPSHOT/WEB-INF/classes"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
|
|
@ -37,7 +37,7 @@ public class ReplaceElementStore {
|
||||||
add(new ReplaceElement(3, ReplaceType.SubstringByRegex));
|
add(new ReplaceElement(3, ReplaceType.SubstringByRegex));
|
||||||
add(new ReplaceElement(4, ReplaceType.SubstringByIndex));
|
add(new ReplaceElement(4, ReplaceType.SubstringByIndex));
|
||||||
add(new ReplaceElement(5, ReplaceType.SubstringByCharSeq));
|
add(new ReplaceElement(5, ReplaceType.SubstringByCharSeq));
|
||||||
add(new ReplaceElement(5, ReplaceType.TextReplaceMatchingRegex));
|
add(new ReplaceElement(6, ReplaceType.TextReplaceMatchingRegex));
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue