com.caoccao.javet.values.primitive.V8ValueZonedDateTime Maven / Gradle / Ivy
/*
* Copyright (c) 2021-2024. caoccao.com Sam Cao
*
* Licensed 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 com.caoccao.javet.values.primitive;
import com.caoccao.javet.exceptions.JavetException;
import com.caoccao.javet.interop.V8Runtime;
import com.caoccao.javet.utils.JavetDateTimeUtils;
import java.time.ZonedDateTime;
import java.util.Objects;
/**
* The type V8 value zoned date time.
*
* @since 0.7.0
*/
@SuppressWarnings("unchecked")
public final class V8ValueZonedDateTime extends V8ValuePrimitive {
/**
* Instantiates a new V8 value zoned date time.
*
* @param v8Runtime the V8 runtime
* @throws JavetException the javet exception
* @since 0.7.0
*/
public V8ValueZonedDateTime(V8Runtime v8Runtime) throws JavetException {
this(v8Runtime, null);
}
/**
* Instantiates a new V8 value zoned date time.
*
* @param v8Runtime the V8 runtime
* @param jsTimestamp the js timestamp
* @throws JavetException the javet exception
* @since 0.7.0
*/
public V8ValueZonedDateTime(V8Runtime v8Runtime, long jsTimestamp) throws JavetException {
this(v8Runtime, JavetDateTimeUtils.toZonedDateTime(jsTimestamp));
}
/**
* Instantiates a new V8 value zoned date time.
*
* @param v8Runtime the V8 runtime
* @param value the value
* @throws JavetException the javet exception
* @since 0.7.0
*/
public V8ValueZonedDateTime(V8Runtime v8Runtime, ZonedDateTime value) throws JavetException {
super(v8Runtime, Objects.requireNonNull(value));
}
@Override
public boolean asBoolean() {
return value != null;
}
@Override
public int asInt() throws JavetException {
return asBoolean() ? 1 : 0;
}
@Override
public V8ValueZonedDateTime toClone(boolean referenceCopy) throws JavetException {
return this;
}
/**
* To primitive long.
*
* @return the long
* @since 0.7.0
*/
public long toPrimitive() {
return value.toInstant().toEpochMilli();
}
}