Skip to content

Commit

Permalink
yegor256#1325 - Introduced SortedSetEnvelope.
Browse files Browse the repository at this point in the history
  • Loading branch information
vzurauskas committed Mar 27, 2020
1 parent 37f2408 commit 415d354
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 48 deletions.
50 changes: 2 additions & 48 deletions src/main/java/org/cactoos/set/Sorted.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

import java.util.Comparator;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;
import org.cactoos.iterable.IterableOf;

Expand All @@ -37,13 +36,7 @@
* @param <T> Set type
* @since 1.0.0
*/
@SuppressWarnings("PMD.OnlyOneConstructorShouldDoInitialization")
public final class Sorted<T> extends SetEnvelope<T> implements SortedSet<T> {

/**
* The original Set this object delegates to.
*/
private final SortedSet<T> origin;
public final class Sorted<T> extends SortedSetEnvelope<T> {

/**
* Ctor.
Expand All @@ -62,46 +55,7 @@ public Sorted(final Comparator<T> cmp, final T... array) {
*/
@SuppressWarnings("PMD.ConstructorOnlyInitializesOrCallOtherConstructors")
public Sorted(final Comparator<T> cmp, final Iterable<T> src) {
this(new TreeSet<>(cmp));
super(new TreeSet<>(cmp));
src.forEach(super::add);
}

/**
* Primary ctor.
* @param origin The original SortedSet to delegate to.
*/
private Sorted(final SortedSet<T> origin) {
super(origin);
this.origin = origin;
}

@Override
public Comparator<? super T> comparator() {
return this.origin.comparator();
}

@Override
public SortedSet<T> subSet(final T begin, final T end) {
return this.origin.subSet(begin, end);
}

@Override
public SortedSet<T> headSet(final T end) {
return this.origin.headSet(end);
}

@Override
public SortedSet<T> tailSet(final T from) {
return this.origin.tailSet(from);
}

@Override
public T first() {
return this.origin.first();
}

@Override
public T last() {
return this.origin.last();
}
}
90 changes: 90 additions & 0 deletions src/main/java/org/cactoos/set/SortedSetEnvelope.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2017-2020 Yegor Bugayenko
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.cactoos.set;

import java.util.Comparator;
import java.util.SortedSet;

/**
* SortedSet envelope.
* <p>There is no thread-safety guarantee.</p>
*
* @param <T> Element type
* @checkstyle AbstractClassNameCheck (500 lines)
* @since 0.45
*/
@SuppressWarnings(
{
"PMD.TooManyMethods",
"PMD.AbstractNaming"
}
)
public abstract class SortedSetEnvelope<T> extends SetEnvelope<T> implements
SortedSet<T> {

/**
* The original Set this object delegates to.
*/
private final SortedSet<T> origin;

/**
* Primary ctor.
* @param origin The original SortedSet to delegate to.
*/
protected SortedSetEnvelope(final SortedSet<T> origin) {
super(origin);
this.origin = origin;
}

@Override
public final Comparator<? super T> comparator() {
return this.origin.comparator();
}

@Override
public final SortedSet<T> subSet(final T begin, final T end) {
return this.origin.subSet(begin, end);
}

@Override
public final SortedSet<T> headSet(final T end) {
return this.origin.headSet(end);
}

@Override
public final SortedSet<T> tailSet(final T from) {
return this.origin.tailSet(from);
}

@Override
public final T first() {
return this.origin.first();
}

@Override
public final T last() {
return this.origin.last();
}

}

0 comments on commit 415d354

Please sign in to comment.