Fixup rrd4j javadoc errors, tested with JDK 15 b11

This commit is contained in:
zzz
2020-02-26 17:04:06 +00:00
parent 0bec84a3b1
commit eb73f0aae2
8 changed files with 8 additions and 14 deletions

View File

@ -8,7 +8,7 @@ import java.io.IOException;
* fixed length array of double values. Each double value represents consolidated, archived
* value for the specific timestamp. When the underlying array of double values gets completely
* filled, new values will replace the oldest ones.<p>
* <p/>
*
* Robin object does not hold values in memory - such object could be quite large.
* Instead of it, Robin reads them from the backend I/O only when necessary.
*

View File

@ -8,7 +8,7 @@ import java.io.IOException;
* fixed length array of double values. Each double value reperesents consolidated, archived
* value for the specific timestamp. When the underlying array of double values gets completely
* filled, new values will replace the oldest ones.<p>
* <p/>
*
* Robin object does not hold values in memory - such object could be quite large.
* Instead of it, Robin reads them from the backend I/O only when necessary.
*

View File

@ -51,12 +51,6 @@ import java.util.regex.Pattern;
* {@link org.rrd4j.core.RrdMemoryBackendFactory} class. This backend stores all data in memory. Once
* JVM exits, all data gets lost. The backend is extremely fast and memory hungry.
*
* <li>{@link org.rrd4j.core.RrdBerkeleyDbBackend}: objects of this class are created from the
* {@link org.rrd4j.core.RrdBerkeleyDbBackendFactory} class. It stores RRD data to ordinary disk files
* using <a href="http://www.oracle.com/technetwork/database/berkeleydb/overview/index-093405.html">Oracle Berkeley DB</a> Java Edition.
*
* <li>{@link org.rrd4j.core.RrdMongoDBBackend}: objects of this class are created from the {@link org.rrd4j.core.RrdMongoDBBackendFactory} class.
* It stores data in a {@link com.mongodb.DBCollection} from <a href="http://www.mongodb.org/">MongoDB</a>.
* </ul>
* <p>
* Each backend factory used to be identified by its {@link #getName() name}. Constructors

View File

@ -6,7 +6,7 @@ import java.util.concurrent.ScheduledExecutorService;
/**
* Factory class which creates actual {@link org.rrd4j.core.RrdNioBackend} objects. This is the default factory since
* 1.4.0 version.
* <h3>Managing the thread pool</h3>
* <h2>Managing the thread pool</h2>
* <p>Each RrdNioBackendFactory is optionally backed by a {@link org.rrd4j.core.RrdSyncThreadPool}, which it uses to sync the memory-mapped files to
* disk. In order to avoid having these threads live longer than they should, it is recommended that clients create and
* destroy thread pools at the appropriate time in their application's life time. Failure to manage thread pools

View File

@ -128,7 +128,7 @@ public class RrdSyncThreadPool
* If there is a SecurityManager, it uses the group of System.getSecurityManager(), else the group
* of the thread instantiating this DaemonThreadFactory. Each new thread is created as a daemon thread
* with priority Thread.NORM_PRIORITY. New threads have names accessible via Thread.getName()
* of "<pool-name> Pool [Thread-M]", where M is the sequence number of the thread created by this factory.
* of "&lt;pool-name&gt; Pool [Thread-M]", where M is the sequence number of the thread created by this factory.
*/
static class DaemonThreadFactory implements ThreadFactory
{

View File

@ -13,7 +13,7 @@ import org.rrd4j.core.InvalidRrdException;
/**
* This class is used read information from an RRD file. Writing
* to RRD files is not currently supported. It uses NIO's RandomAccessFile to read the file
* <p/>
*
* Currently this can read RRD files that were generated on Solaris (Sparc)
* and Linux (x86).
*

View File

@ -7,7 +7,7 @@ import java.nio.ByteOrder;
/**
* This class is used to read a unival from a file
* unival is a rrdtool type, defined in rrd_format.h
* @author Fabrice Bacchella <fbacchella@spamcop.net>
* @author Fabrice Bacchella fbacchella@spamcop.net
*
*/
class UnivalArray {

View File

@ -34,7 +34,7 @@ abstract class Source {
* @param tStart
* @param tEnd
* @return
* @deprecated This method is deprecated. Uses instance of {@link org.rrd4j.data.Variable}, used with {@link org.rrd4j.data.DataProcessor.addDatasource(String, String, Variable)}
* @deprecated This method is deprecated. Uses instance of {@link org.rrd4j.data.Variable}, used with DataProcessor.addDatasource(String, String, Variable)
*/
@Deprecated
Aggregates getAggregates(long tStart, long tEnd) {
@ -47,7 +47,7 @@ abstract class Source {
* @param tEnd
* @param percentile
* @return
* @deprecated This method is deprecated. Uses instance of {@link org.rrd4j.data.Variable.PERCENTILE}, used with {@link org.rrd4j.data.DataProcessor.addDatasource(String, String, Variable)}
* @deprecated This method is deprecated. Uses instance of {@link org.rrd4j.data.Variable.PERCENTILE}, used with DataProcessor.addDatasource(String, String, Variable)
*/
@Deprecated
double getPercentile(long tStart, long tEnd, double percentile) {