Example usage for com.vaadin.shared.util SharedUtil capitalize

List of usage examples for com.vaadin.shared.util SharedUtil capitalize

Introduction

In this page you can find the example usage for com.vaadin.shared.util SharedUtil capitalize.

Prototype

public static String capitalize(String string) 

Source Link

Document

Capitalizes the first character in the given string in a way suitable for use in code (methods, properties etc).

Usage

From source file:com.example.bbs.vaadin.view.StringGenerator.java

License:Apache License

public String nextString(boolean capitalize) {
    if (++stringCount >= strings.length) {
        stringCount = 0;//from   w  w w . j  a v  a  2  s.c  om
    }
    return capitalize ? SharedUtil.capitalize(strings[stringCount]) : strings[stringCount];
}