⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timeseriestrack.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     TimeSeriesTrack.java * Project:  MPI Linguistic Application * Date:     02 May 2007 * * Copyright (C) 2001-2007  Max Planck Institute for Psycholinguistics * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package mpi.eudico.client.annotator.timeseries;/** * An interface describing a single time series data track. */public interface TimeSeriesTrack {    /** the values are stored in an int array */    public static final int VALUES_INT_ARRAY = 0;    /** the values are stored in an float array */    public static final int VALUES_FLOAT_ARRAY = 1;    /** the values are stored in an double array */    public static final int VALUES_DOUBLE_ARRAY = 2;    /** the values are stored in time-value pairs in a Map */    public static final int TIME_VALUES_MAP = 10;    /** the values are stored in TimeValue objects in a List */    public static final int TIME_VALUE_LIST = 11;    /**     * Returns the name /id of the track.     *     * @return the name /id of the track     */    public String getName();    /**     * Sets the name /id of the track     *     * @param name the name /id of the track     */    public void setName(String name);    /**     * Returns the description of this track.     *     * @return the description of this track     */    public String getDescription();    /**     * Sets the description of this track     *     * @param description the description of this track     */    public void setDescription(String description);    /**     * Returns the range that has been set for this track. Might be an     * estimated, expected range that does not necessarely represent the     * actual minimum and maximum values in the track.     *     * @return the range that has been set for this track     */    public float[] getRange();    /**     * Sets the range that has been set for this track     *     * @param range the range that has been set for this track     *     * @see #getRange()     */    public void setRange(float[] range);    /**     * A String representation of the source this track has been extracted     * from.     *     * @return the source of the track     */    public String getSource();    /**     * Sets the source for the track data.     *     * @param source the source     */    public void setSource(String source);    /**     * Returns the level of a derivation in case the data in this track is   a     * derivative of the data in the samples.     *     * @return the level of derivation, 0 means no derivation (the raw data     *         from the file)     */    public int getDerivativeLevel();    /**     * Sets the level of a derivation for the data in this track.     *     * @param level the level of derivation, 0 means no derivation     */    public void setDerivativeLevel(int level);    /**     * The sample rate of the track, always interpreted as number of samples     * per second.  Presumes a fixed rate, i.e. a value for every x ms is     * present.     *     * @param rate sample rate of the track     */    public void setSampleRate(float rate);    /**     * Returns the sample rate, i.e. number of samples per seconds.     *     * @return the sample rate     *     * @see #getSampleRate()     */    public float getSampleRate();    /**     * Retunrs the number of samples in this track.     *     * @return the number of samples     */    public int getSampleCount();    /**     * Returns the actual data of the track. Probably a float[]?     *     * @return the actual data of the track     */    public Object getData();    /**     * Sets the actual data of the track.     *     * @param data the actual data of the track     */    public void setData(Object data);    /**     * Returns a String representation of the ruler's units, like m/s.     *     * @return a String representation of the ruler's units     */    public String getUnitString();    /**     * Sets the String representation of the ruler's units.     *     * @param unitString the String representation of the ruler's units     */    public void setUnitString(String unitString);    /**     * Finds and returns the minimum value within the given time interval.     *     * @param begin begin time of the interval (inclusive)     * @param end end time of the interval (inclusive)     *     * @return the minimum value     */    public float getMinimum(long begin, long end);    /**     * Finds and returns the maximum value within the given time interval.     *     * @param begin begin time of the interval (inclusive)     * @param end end time of the interval (inclusive)     *     * @return the maximum value     */    public float getMaximum(long begin, long end);    /**     * Finds and returns the average of the values within the given time     * interval.     *     * @param begin begin time of the interval (inclusive)     * @param end end time of the interval (inclusive)     *     * @return the average of the values     */    public float getAverage(long begin, long end);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -