blob: 472b4472ab888eb4704c1c87fbfc48b09962e037 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) April 5, 2014 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package m;
import java.util.function.Supplier;
public class MR {
/**
* @noreference This method is not intended to be referenced by clients.
* @param supplier
*/
public <T> void con (Supplier<T> supplier) {}
/**@noreference This method is not intended to be referenced by clients.
*
* @param str1
* @param str2
* @return
*/
public int mrCompare2(String str1, String str2) {
return 0;
}
/**
* @noreference
* @param str1
* @param str2
* @return
*/
public static int mrCompare(String str1, String str2) {
return 0;
}
}