-
-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create ExprUnixDate.java * Create ExprUnixDate.sk
- Loading branch information
1 parent
1726477
commit 84f928d
Showing
2 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
src/main/java/ch/njol/skript/expressions/ExprUnixDate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/** | ||
* This file is part of Skript. | ||
* | ||
* Skript 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 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Skript 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 Skript. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* | ||
* Copyright 2011-2017 Peter Güttinger and contributors | ||
*/ | ||
package ch.njol.skript.expressions; | ||
|
||
import org.eclipse.jdt.annotation.Nullable; | ||
|
||
import ch.njol.skript.doc.Description; | ||
import ch.njol.skript.doc.Examples; | ||
import ch.njol.skript.doc.Name; | ||
import ch.njol.skript.doc.Since; | ||
import ch.njol.skript.expressions.base.SimplePropertyExpression; | ||
import ch.njol.skript.util.Date; | ||
|
||
@Name("Unix Date") | ||
@Description("Converts given Unix timestamp to a date. The Unix timespan represents the number of seconds elapsed since 1 January 1970.") | ||
@Examples("unix date of 946684800 #1 January 2000 12:00 AM (UTC Time)") | ||
@Since("INSERT VERSION") | ||
public class ExprUnixDate extends SimplePropertyExpression<Number, Date> { | ||
|
||
static { | ||
register(ExprUnixDate.class, Date.class, "unix date", "numbers"); | ||
} | ||
|
||
@Override | ||
@Nullable | ||
public Date convert(Number n) { | ||
return new Date((long)(n.doubleValue() * 1000)); | ||
} | ||
|
||
@Override | ||
protected String getPropertyName() { | ||
return "unix date"; | ||
} | ||
|
||
@Override | ||
public Class<? extends Date> getReturnType() { | ||
return Date.class; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
test "unix date": | ||
set {_now} to now | ||
assert unix date of (unix timestamp of {_now}) is {_now} with "unix date failed" |