Here you can find the source of fieldNameMatchesProperty(final String name, final String property)
public static boolean fieldNameMatchesProperty(final String name, final String property)
//package com.java2s; //License from project: Open Source License public class Main { public static boolean fieldNameMatchesProperty(final String name, final String property) { return name.equalsIgnoreCase(property); }/*from w w w . ja v a 2 s. co m*/ }