/* * Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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 com.amazonaws.services.rekognition.model; import java.io.Serializable; public class DetectModerationLabelsResult implements Serializable { /** * <p> * Array of detected Moderation labels and the time, in milliseconds from * the start of the video, they were detected. * </p> */ private java.util.List<ModerationLabel> moderationLabels; /** * <p> * Version number of the moderation detection model that was used to detect * unsafe content. * </p> */ private String moderationModelVersion; /** * <p> * Shows the results of the human in the loop evaluation. * </p> */ private HumanLoopActivationOutput humanLoopActivationOutput; /** * <p> * Array of detected Moderation labels and the time, in milliseconds from * the start of the video, they were detected. * </p> * * @return <p> * Array of detected Moderation labels and the time, in milliseconds * from the start of the video, they were detected. * </p> */ public java.util.List<ModerationLabel> getModerationLabels() { return moderationLabels; } /** * <p> * Array of detected Moderation labels and the time, in milliseconds from * the start of the video, they were detected. * </p> * * @param moderationLabels <p> * Array of detected Moderation labels and the time, in * milliseconds from the start of the video, they were detected. * </p> */ public void setModerationLabels(java.util.Collection<ModerationLabel> moderationLabels) { if (moderationLabels == null) { this.moderationLabels = null; return; } this.moderationLabels = new java.util.ArrayList<ModerationLabel>(moderationLabels); } /** * <p> * Array of detected Moderation labels and the time, in milliseconds from * the start of the video, they were detected. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param moderationLabels <p> * Array of detected Moderation labels and the time, in * milliseconds from the start of the video, they were detected. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public DetectModerationLabelsResult withModerationLabels(ModerationLabel... moderationLabels) { if (getModerationLabels() == null) { this.moderationLabels = new java.util.ArrayList<ModerationLabel>( moderationLabels.length); } for (ModerationLabel value : moderationLabels) { this.moderationLabels.add(value); } return this; } /** * <p> * Array of detected Moderation labels and the time, in milliseconds from * the start of the video, they were detected. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param moderationLabels <p> * Array of detected Moderation labels and the time, in * milliseconds from the start of the video, they were detected. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public DetectModerationLabelsResult withModerationLabels( java.util.Collection<ModerationLabel> moderationLabels) { setModerationLabels(moderationLabels); return this; } /** * <p> * Version number of the moderation detection model that was used to detect * unsafe content. * </p> * * @return <p> * Version number of the moderation detection model that was used to * detect unsafe content. * </p> */ public String getModerationModelVersion() { return moderationModelVersion; } /** * <p> * Version number of the moderation detection model that was used to detect * unsafe content. * </p> * * @param moderationModelVersion <p> * Version number of the moderation detection model that was used * to detect unsafe content. * </p> */ public void setModerationModelVersion(String moderationModelVersion) { this.moderationModelVersion = moderationModelVersion; } /** * <p> * Version number of the moderation detection model that was used to detect * unsafe content. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param moderationModelVersion <p> * Version number of the moderation detection model that was used * to detect unsafe content. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public DetectModerationLabelsResult withModerationModelVersion(String moderationModelVersion) { this.moderationModelVersion = moderationModelVersion; return this; } /** * <p> * Shows the results of the human in the loop evaluation. * </p> * * @return <p> * Shows the results of the human in the loop evaluation. * </p> */ public HumanLoopActivationOutput getHumanLoopActivationOutput() { return humanLoopActivationOutput; } /** * <p> * Shows the results of the human in the loop evaluation. * </p> * * @param humanLoopActivationOutput <p> * Shows the results of the human in the loop evaluation. * </p> */ public void setHumanLoopActivationOutput(HumanLoopActivationOutput humanLoopActivationOutput) { this.humanLoopActivationOutput = humanLoopActivationOutput; } /** * <p> * Shows the results of the human in the loop evaluation. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param humanLoopActivationOutput <p> * Shows the results of the human in the loop evaluation. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public DetectModerationLabelsResult withHumanLoopActivationOutput( HumanLoopActivationOutput humanLoopActivationOutput) { this.humanLoopActivationOutput = humanLoopActivationOutput; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getModerationLabels() != null) sb.append("ModerationLabels: " + getModerationLabels() + ","); if (getModerationModelVersion() != null) sb.append("ModerationModelVersion: " + getModerationModelVersion() + ","); if (getHumanLoopActivationOutput() != null) sb.append("HumanLoopActivationOutput: " + getHumanLoopActivationOutput()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getModerationLabels() == null) ? 0 : getModerationLabels().hashCode()); hashCode = prime * hashCode + ((getModerationModelVersion() == null) ? 0 : getModerationModelVersion() .hashCode()); hashCode = prime * hashCode + ((getHumanLoopActivationOutput() == null) ? 0 : getHumanLoopActivationOutput() .hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DetectModerationLabelsResult == false) return false; DetectModerationLabelsResult other = (DetectModerationLabelsResult) obj; if (other.getModerationLabels() == null ^ this.getModerationLabels() == null) return false; if (other.getModerationLabels() != null && other.getModerationLabels().equals(this.getModerationLabels()) == false) return false; if (other.getModerationModelVersion() == null ^ this.getModerationModelVersion() == null) return false; if (other.getModerationModelVersion() != null && other.getModerationModelVersion().equals(this.getModerationModelVersion()) == false) return false; if (other.getHumanLoopActivationOutput() == null ^ this.getHumanLoopActivationOutput() == null) return false; if (other.getHumanLoopActivationOutput() != null && other.getHumanLoopActivationOutput().equals(this.getHumanLoopActivationOutput()) == false) return false; return true; } }