All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.exparity.beans.naming.CapitalizedNamingStrategy Maven / Gradle / Ivy

Go to download

A Java library of bean utilities for manipulating and inspecting Java classes implementing the Java Beans standard

There is a newer version: 1.0.3
Show newest version
/*
 * Copyright (c) Modular IT Limited.
 */

package org.exparity.beans.naming;

import java.lang.reflect.Method;

import org.exparity.beans.BeanNamingStrategy;

/**
 * @author Stewart Bissett
 */
public class CapitalizedNamingStrategy extends AbstractNamingStrategy implements BeanNamingStrategy {

	public String describeRoot(final Class type) {
		return describeType(type);
	}

	public String describeType(final Class type) {
		return typeName(type);
	}

	public String describeProperty(final Method method, final String prefix) {
		return method.getName().substring(prefix.length());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy