Java Field Name Get fieldNameMatchesProperty(final String name, final String property)

Here you can find the source of fieldNameMatchesProperty(final String name, final String property)

Description

field Name Matches Property

License

Open Source License

Declaration

public static boolean fieldNameMatchesProperty(final String name, final String property) 

Method Source Code

//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*/
}

Related

  1. fieldName(String getsetName)
  2. fieldName(String name)
  3. fieldName(String nodeName)
  4. fieldName(String underScore)
  5. fieldNameFromPropertyName(final String propertyName)
  6. fieldNameToConstant(String fieldname)
  7. fieldNameToMethodName(String methodPrefix, String fieldName)
  8. fieldNameToPath(String fieldName)