1 8 9 package com.sleepycat.je; 10 11 15 public class JoinConfig implements Cloneable { 16 17 21 public static final JoinConfig DEFAULT = new JoinConfig(); 22 23 private boolean noSort; 24 25 29 public JoinConfig() { 30 } 31 32 36 public void setNoSort(boolean noSort) { 37 this.noSort = noSort; 38 } 39 40 44 public boolean getNoSort() { 45 return noSort; 46 } 47 48 52 JoinConfig cloneConfig() { 53 try { 54 return (JoinConfig) super.clone(); 55 } catch (CloneNotSupportedException willNeverOccur) { 56 return null; 57 } 58 } 59 } 60 | Popular Tags |