All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.nifi.registry.util.PropertyValue 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 org.apache.nifi.registry.util;

import java.util.concurrent.TimeUnit;

/**
 * 

* A PropertyValue provides a mechanism whereby the currently configured value * can be obtained in different forms. *

*/ public interface PropertyValue { /** * @return the raw property value as a string */ String getValue(); /** * @return an integer representation of the property value, or * null if not set * @throws NumberFormatException if not able to parse */ Integer asInteger(); /** * @return a Long representation of the property value, or null * if not set * @throws NumberFormatException if not able to parse */ Long asLong(); /** * @return a Boolean representation of the property value, or * null if not set */ Boolean asBoolean(); /** * @return a Float representation of the property value, or * null if not set * @throws NumberFormatException if not able to parse */ Float asFloat(); /** * @return a Double representation of the property value, of * null if not set * @throws NumberFormatException if not able to parse */ Double asDouble(); /** * @param timeUnit specifies the TimeUnit to convert the time duration into * @return a Long value representing the value of the configured time period * in terms of the specified TimeUnit; if the property is not set, returns * null */ Long asTimePeriod(TimeUnit timeUnit); /** * * @param dataUnit specifies the DataUnit to convert the data size into * @return a Long value representing the value of the configured data size * in terms of the specified DataUnit; if hte property is not set, returns * null */ Double asDataSize(DataUnit dataUnit); /** * @return true if the user has configured a value, or if the * PropertyDescriptor for the associated property has a default * value, false otherwise */ boolean isSet(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy