You can do this as of v26 (Winter 13) by creating a List from your String[] array and passing that to String.join().
String input = 'valueOne valueTwo valueThree';
String[] splitInput = input.split(' ');
List<String> values = new List<String>( splitInput );
String result = String.join( values, ' AND ' );
Anonymous Apex output calling System.debug(result):
21:02:32.039 (39470000)|EXECUTION_STARTED
21:02:32.039 (39485000)|CODE_UNIT_STARTED|[EXTERNAL]|execute_anonymous_apex
21:02:32.040 (40123000)|SYSTEM_CONSTRUCTOR_ENTRY|[3]|<init>()
21:02:32.040 (40157000)|SYSTEM_CONSTRUCTOR_EXIT|[3]|<init>()
21:02:32.040 (40580000)|USER_DEBUG|[5]|DEBUG|valueOne AND valueTwo AND valueThree
Salesforce API Documentation: http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_methods_system_string.htm