Example usage for java.time LocalDateTime MIN

List of usage examples for java.time LocalDateTime MIN

Introduction

In this page you can find the example usage for java.time LocalDateTime MIN.

Prototype

LocalDateTime MIN

To view the source code for java.time LocalDateTime MIN.

Click Source Link

Document

The minimum supported LocalDateTime , '-999999999-01-01T00:00:00'.

Usage

From source file:org.openhab.binding.modbus.internal.handler.ModbusDataThingHandler.java

@Override
public synchronized void dispose() {
    config = null;/*from  ww  w  . j  a va 2 s  . c o m*/
    readValueType = null;
    writeValueType = null;
    readTransformation = null;
    writeTransformation = null;
    readIndex = Optional.empty();
    readSubIndex = Optional.empty();
    writeStart = null;
    pollStart = 0;
    slaveId = 0;
    slaveEndpoint = null;
    manager = null;
    pollTask = null;
    isWriteEnabled = false;
    isReadEnabled = false;
    transformationOnlyInWrite = false;
    childOfEndpoint = false;
    pollerHandler = null;
    channelCache = new HashMap<>();
    lastStatusInfoUpdate = LocalDateTime.MIN;
    statusInfo = new ThingStatusInfo(ThingStatus.UNKNOWN, ThingStatusDetail.NONE, null);
    channelLastUpdated = new HashMap<>(NUMER_OF_CHANNELS_HINT);
    channelLastState = new HashMap<>(NUMER_OF_CHANNELS_HINT);
}