Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static final String IS = "is";
    public static final String GET = "get";
    public static final String SET = "set";

    public static boolean isPropertyName(String name) {
        return name.startsWith(IS) || name.startsWith(GET) || name.startsWith(SET);
    }
}