// Ensure the given name is a class name specification:
if(!isClassName(propValue))
thrownewTAPException("Class name expected for the property \""+propName+"\" instead of: \""+propValue+"\"! The specified class must extend/implement "+expectedType.getName()+".");
@@ -429,7 +448,7 @@ public final class TAPConfiguration {
// Ensure the given name is a class name specification:
if(!isClassName(propValue))
thrownewTAPException("Class name expected for the property \""+propName+"\" instead of: \""+propValue+"\"! The specified class must extend/implement "+expectedType.getName()+".");
@@ -529,7 +548,7 @@ public final class TAPConfiguration {
// If empty value, return an infinite limit:
if(value==null||value.length()==0)
returnnewObject[]{-1,LimitUnit.rows};
returnnewObject[]{-1,LimitUnit.rows};
// A. Parse the string from the end in order to extract the unit part.
// The final step of the loop is the extraction of the numeric value, when the first digit is encountered.
@@ -596,7 +615,7 @@ public final class TAPConfiguration {