Here you can find the source of getDBPediaFormatDescriptions( String descriptionStr)
Parameter | Description |
---|---|
descriptionStr | a parameter |
public static List<String> getDBPediaFormatDescriptions( String descriptionStr)
//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; } }