1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 08:34:50 +02:00
Smack/smack-extensions/src/main/java/org/jivesoftware/smackx/xdata/form/FormReader.java
Florian Schmaus c5212c20b6 [xdata] Rename FormReader.read(String) to getField(String)
Now that FormWriter, with its write() method, is gone, there is no
reason the FormReader method should still be named read(). Renaming to
getField() as this is what DataForm also uses.
2020-05-14 17:13:01 +02:00

91 lines
3 KiB
Java

/**
*
* Copyright 2020 Florian Schmaus
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jivesoftware.smackx.xdata.form;
import java.text.ParseException;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import org.jivesoftware.smackx.xdata.AbstractMultiFormField;
import org.jivesoftware.smackx.xdata.AbstractSingleStringValueFormField;
import org.jivesoftware.smackx.xdata.BooleanFormField;
import org.jivesoftware.smackx.xdata.FormField;
import org.jxmpp.util.XmppDateTime;
public interface FormReader {
FormField getField(String fieldName);
default String readFirstValue(String fieldName) {
FormField formField = getField(fieldName);
if (formField == null) {
return null;
}
return formField.getFirstValue();
}
default List<? extends CharSequence> readValues(String fieldName) {
FormField formField = getField(fieldName);
if (formField == null) {
return Collections.emptyList();
}
return formField.getValues();
}
default List<String> readStringValues(String fieldName) {
FormField formField = getField(fieldName);
if (formField == null) {
return Collections.emptyList();
}
AbstractMultiFormField multiFormField = formField.ifPossibleAs(AbstractMultiFormField.class);
return multiFormField.getValues();
}
default Boolean readBoolean(String fieldName) {
FormField formField = getField(fieldName);
if (formField == null) {
return null;
}
BooleanFormField booleanFormField = formField.ifPossibleAs(BooleanFormField.class);
return booleanFormField.getValueAsBoolean();
}
default Integer readInteger(String fieldName) {
FormField formField = getField(fieldName);
if (formField == null) {
return null;
}
AbstractSingleStringValueFormField textSingleFormField = formField.ifPossibleAs(AbstractSingleStringValueFormField.class);
return textSingleFormField.getValueAsInt();
}
default Date readDate(String fieldName) throws ParseException {
FormField formField = getField(fieldName);
if (formField == null) {
return null;
}
AbstractSingleStringValueFormField textSingleFormField = formField.ifPossibleAs(AbstractSingleStringValueFormField.class);
String value = textSingleFormField.getValue();
if (value == null) {
return null;
}
return XmppDateTime.parseDate(value);
}
}