All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.altova.text.edi.DataValueGroupsValidator Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.altova.text.edi;

public class DataValueGroupsValidator extends DataValueValidator {
	protected DataValueValidator[] mValidators;
	
	public DataValueGroupsValidator(DataValueValidator[] validators) {
		mValidators = validators;
	}

	public boolean isIncomplete() {
		for( DataValueValidator validator: mValidators ) {
			if( validator.isIncomplete() )
				return true;
		}
		return false;
	}
	
	public boolean hasValue(String value) {
		for( DataValueValidator validator: mValidators ) {
			if( validator.hasValue(value) )
				return true;
		}
		return false;
	}

	public String getCodeListValues() {
		StringBuffer sb = new StringBuffer();
		for( int i = 0; i < mValidators.length - 1; i++) {
			String s = mValidators[i].getCodeListValues();
			if( s.length() > 0 ) {
				sb.append( s );
				sb.append( "; " );
				}
		}
		sb.append( mValidators[mValidators.length - 1].getCodeListValues() );
		return sb.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy