blob: 8733853e761f303877c7d3c7d1d7b45f9fa7af94 [file] [log] [blame]
/*
* 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.geode;
import org.apache.geode.annotations.Immutable;
/**
* Used to describe a logical collection of statistics. These descriptions are used to create an
* instance of {@link Statistics}.
*
* <P>
* To get an instance of this interface use an instance of {@link StatisticsFactory}.
*
*
* @since GemFire 3.0
*/
@Immutable
public interface StatisticsType {
/**
* Returns the name of this statistics type
*/
String getName();
/**
* Returns a description of this statistics type
*/
String getDescription();
/**
* Returns descriptions of the statistics that this statistics type gathers together
*/
StatisticDescriptor[] getStatistics();
/**
* Returns the id of the statistic with the given name in this statistics instance.
*
* @throws IllegalArgumentException No statistic named <code>name</code> exists in this statistics
* instance.
*/
int nameToId(String name);
/**
* Returns the descriptor of the statistic with the given name in this statistics instance.
*
* @throws IllegalArgumentException No statistic named <code>name</code> exists in this statistics
* instance.
*/
StatisticDescriptor nameToDescriptor(String name);
}