Here you can find the source of pathToFields(String beanPath)
public static String[] pathToFields(String beanPath)
//package com.java2s; //License from project: Apache License public class Main { public static final String BEAN_PATH_DELIM_REGEX = "\\."; public static String[] pathToFields(String beanPath) { return beanPath.split(BEAN_PATH_DELIM_REGEX); }/*from w w w . jav a 2s.c o m*/ }