Java String Format getDBPediaFormatDescriptions( String descriptionStr)

Here you can find the source of getDBPediaFormatDescriptions( String descriptionStr)

Description

get DB Pedia Format Descriptions

License

Apache License

Parameter

Parameter Description
descriptionStr a parameter

Declaration

public static List<String> getDBPediaFormatDescriptions(
        String descriptionStr) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.ArrayList;

import java.util.List;

public class Main {
    /**/*from w w  w. j  a v  a  2  s .  c  o  m*/
     * @param descriptionStr
     * @return
     */
    public static List<String> getDBPediaFormatDescriptions(
            String descriptionStr) {
        List<String> descriptions = new ArrayList<String>();
        if (descriptionStr != null && descriptionStr.length() > 0) {
            descriptions.add(descriptionStr);
        }
        return descriptions;
    }
}

Related

  1. formatTreeLines(String tree)
  2. formatVarname(StringBuilder buffer, Object varname)
  3. formatWords(String words, String delimiter, boolean isHeaderUpperCase)
  4. getAnswerKey(String itemFormat)
  5. getCodeFileName(String fileNameFormat, String randomCode)
  6. getEmailFormatError(String fieldPropertyName)
  7. getFormat(String key, ResourceBundle bundle)
  8. getFormatted(String messageKey)
  9. getFormattedMessage(final String pattern, final Object[] arguments)