Back to project page api-ai-android-sdk.
The source code is released under:
Apache License
If you think the Android project api-ai-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ai.api.model; //from ww w . j a v a2s .c o m /*********************************************************************************************************************** * * API.AI Android SDK - client-side libraries for API.AI * ================================================= * * Copyright (C) 2014 by Speaktoit, Inc. (https://www.speaktoit.com) * https://www.api.ai * *********************************************************************************************************************** * * 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. * ***********************************************************************************************************************/ import android.text.TextUtils; import com.google.gson.annotations.SerializedName; import java.io.Serializable; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class AIRequest extends QuestionMetadata implements Serializable { @SerializedName("query") private String[] query; @SerializedName("confidence") private float[] confidence; @SerializedName("contexts") private ArrayList<String> contexts; @SerializedName("resetContexts") private Boolean resetContexts; public void setQuery(final String query) { if (TextUtils.isEmpty(query)) { throw new IllegalStateException("Query must not be empty"); } this.query = new String[]{query}; confidence = null; } public void setQuery(final String[] query, final float[] confidence) { if (query == null) { throw new IllegalStateException("Query array must not be null"); } if (confidence == null && query.length > 1) { throw new IllegalStateException("Then confidences array is null, query must be one or zero item length"); } if (confidence != null && query.length != confidence.length) { throw new IllegalStateException("Query and confidence arrays must be equals size"); } this.query = query; this.confidence = confidence; } public float[] getConfidence() { return confidence; } public void setConfidence(final float[] confidence) { this.confidence = confidence; } public void setResetContexts(final Boolean resetContexts) { this.resetContexts = resetContexts; } public Boolean getResetContexts() { return resetContexts; } public void setContexts(final List<AIContext> contexts) { if (contexts == null) { this.contexts = null; return; } this.contexts = new ArrayList<>(); for (final AIContext c : contexts) { this.contexts.add(c.getName()); } } public void addContext(final AIContext aiContext) { if (contexts == null) { contexts = new ArrayList<>(1); } contexts.add(aiContext.getName()); } @Override public String toString() { return String.format("AIRequest{query=%s, resetContexts=%s, language='%s', timezone='%s'}", Arrays.toString(query), resetContexts, getLanguage(), getTimezone()); } }