com.sumologic.client.searchjob.model.SearchJobRecord Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 com.sumologic.client.searchjob.model;
import java.util.Collections;
import java.util.Map;
import java.util.Set;
public class SearchJobRecord {
private Map map;
/**
* Returns the names of the fields.
*
* @return A set of field names.
*/
public final Set getFieldNames() {
return Collections.unmodifiableSet(map.keySet());
}
/**
* Returns whether the specified field exists.
*
* @param fieldName The field name.
* @return Whether the specified field exists.
*/
public boolean hasField(String fieldName) {
return map.containsKey(fieldName);
}
/**
* Returns the value for the specified field, or null.
*
* @param fieldName The field name.
* @return The value of the field, or null.
*/
public String stringField(String fieldName) {
return map.get(fieldName);
}
/**
* Returns the value for the specified as an integer.
*
* @param fieldName The field name.
* @return The value for the specified field as an integer.
*/
public long intField(String fieldName) {
return Integer.parseInt(stringField(fieldName));
}
/**
* Returns the value for the specified as a long.
*
* @param fieldName The field name.
* @return The value for the specified field as a long.
*/
public long longField(String fieldName) {
return Long.parseLong(stringField(fieldName));
}
/**
* Returns the value for the specified as a double.
*
* @param fieldName The field name.
* @return The value for the specified field as a double.
*/
public double doubleField(String fieldName) {
return Double.parseDouble(stringField(fieldName));
}
/**
* Returns the key-value map.
*
* @return The map.
*/
public Map getMap() {
return map;
}
/**
* Sets the key-value map.
*
* @param map The key-value map.
*/
public void setMap(Map map) {
this.map = map;
}
/**
* Sets the key-value map.
*
* @param map The key-value map.
* @return This object.
*/
public SearchJobRecord withMap(Map map) {
setMap(map);
return this;
}
}