org.restlet.util.Series.createEntry()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(123)

本文整理了Java中org.restlet.util.Series.createEntry()方法的一些代码示例,展示了Series.createEntry()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Series.createEntry()方法的具体详情如下:
包路径:org.restlet.util.Series
类名称:Series
方法名:createEntry

Series.createEntry介绍

[英]Creates a new entry.
[中]创建一个新条目。

代码示例

代码示例来源:origin: org.restlet/org.restlet

/**
 * Creates then adds a parameter at the end of the list.
 * 
 * @param name
 *            The parameter name.
 * @param value
 *            The parameter value.
 * @return True (as per the general contract of the Collection.add method).
 */
public boolean add(String name, String value) {
  return add(createEntry(name, value));
}

代码示例来源:origin: DeviceConnect/DeviceConnect-Android

/**
 * Creates then adds a parameter at the end of the list.
 * 
 * @param name
 *            The parameter name.
 * @param value
 *            The parameter value.
 * @return True (as per the general contract of the Collection.add method).
 */
public boolean add(String name, String value) {
  return add(createEntry(name, value));
}

代码示例来源:origin: org.restlet.osgi/org.restlet

/**
 * Creates then adds a parameter at the end of the list.
 * 
 * @param name
 *            The parameter name.
 * @param value
 *            The parameter value.
 * @return True (as per the general contract of the Collection.add method).
 */
public boolean add(String name, String value) {
  return add(createEntry(name, value));
}

代码示例来源:origin: org.restlet.jse/org.restlet.ext.html

/**
 * Adds a new form data entry.
 * 
 * @param name
 *            The entry name.
 * @param value
 *            The entry value.
 * @return The entry created and added to {@link #getEntries()}.
 */
public FormData add(String name, String value) {
  FormData result = getEntries().createEntry(name, value);
  getEntries().add(result);
  return result;
}

相关文章